找到使用主题的functions.php文件,加入以下内容:
function addTarget($content) { $result = str_replace('<a', '<a target="_blank"', $content); return $result; } add_filter('the_content', 'addTarget');
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
找到使用主题的functions.php文件,加入以下内容:
function addTarget($content) { $result = str_replace('<a', '<a target="_blank"', $content); return $result; } add_filter('the_content', 'addTarget');