Site icon moneyslow.com

wordpress 文章内容自动超链接(新窗口打开)

wordpress技巧

wordpress技巧

最新方法:

在主题的 functions.php 的最后添加代码如下:

代码位置
/**
 * 2023,04,24 自动超链接
 */
add_filter('the_content', 'make_clickable');
function autoblank($text) {
    $return = str_replace('<a', '<a target="_blank"', $text);
    return $return;
}
add_filter('the_content', 'autoblank');
Exit mobile version