[Resolved] adding nofollow to tags in posts

Home Forums Support [Resolved] adding nofollow to tags in posts

Home Forums Support adding nofollow to tags in posts

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #758933
    dassana

    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.

    #759222
    David
    Staff
    Customer Support

    Hi there,

    try this:

    add_filter( 'the_tags', 'nofollow_tags' );
    function nofollow_tags( $text ) {
        $text = str_replace('rel="tag"', 'rel="nofollow"', $text);
        return $text;
    }
    #759903
    dassana

    thanks a lot david. added the code and it works. thanks again.

    #759998
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.