• Resolved king

    (@sparofire)


    Is it possible to add no follow to post in particular wordpress category

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @sparofire,

    Thank you for contacting Rank Math support.

    You can use the following filter to set the posts to nofollow based on their category:

    add_filter( 'rank_math/frontend/robots', function( $robots ) {if(in_category('nofollow')) { //replcae with the name of the category$robots['follow'] = 'nofollow';}return $robots;});

    Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.

    Thread Starter king

    (@sparofire)

    okay the filter, they won’t be indexed right?

    How can i exclude the posts in a particular category from site map

    Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @sparofire,

    You can use the following filter to exclude all the items from a particular category:
    add_filter( 'rank_math/sitemap/entry', function( $url, $type, $object ) { if(get_the_category($object->ID)[0]->slug == 'category') { //Change the value inside single quotes for the slug of the category you want to exclude return; } return $url; }, 10, 3 );

    Hope this helps.

    Don’t hesitate to get in touch if you have any other questions.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No index in posts under specific categories’ is closed to new replies.