//投稿コンテンツ内のaタグに自動でnofollowを付与
function add_nofollow($content) {
	$content = preg_replace_callback('/<a[^>]+/', function($matches) {
		$link = $matches[0];
		$link .= ' rel="nofollow"';
		return $link;
	}, $content);
	return $content;
}
add_filter('the_content', 'add_nofollow');

latest post

0