我只想在单个帖子上添加 nofollow rel 到标签云。functions.php 中的这个函数代码可以正常工作,但我不知道如何将其限制为 single.php。
function szub_nofollow_tag($text) {
return str_replace('<a href=', '<a rel="nofollow" href=', $text);
}
add_filter('wp_tag_cloud', 'szub_nofollow_tag');
你能告诉我怎么做吗?