WordPress文章内容里的超链接使用新窗口打开

萝莉工坊 157 0

在functions.php里添加

//文章内链接新窗口打开
function autoblank($text) {
	$return = str_replace('<a', '<a target="_blank"', $text);
	return $return;
}
add_filter('the_content', 'autoblank');

发表评论 取消回复
表情 图片 链接 代码

分享