単一の投稿のみでタグクラウドに 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');
やり方を教えてください??