Archived topic
adding nofollow to tags in posts
3 replies · Started by dassana on December 17, 2018
Viewing posts 1–4 of 4
hi tom
i searched the forum to get a code to make the tags links in individual posts have a nofollow attribute. could not get a code. all my posts have ingredient tags shown above the post title. how do i make the tags link nofollow. the website post url is added in the below box.
Hi there,
try this:
add_filter( 'the_tags', 'nofollow_tags' );
function nofollow_tags( $text ) {
$text = str_replace('rel="tag"', 'rel="nofollow"', $text);
return $text;
}
thanks a lot david. added the code and it works. thanks again.
You're welcome
This archived topic is closed to new replies.