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

在functions.php里添加

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

发表评论

您的电子邮箱地址不会被公开。