search url function too noindex and nofollow

#362526
  • Resolved Alireza Naji
    Rank Math free

    Hello gave a good time. I want a function code so that the search URLs set to indexed/nofollow. Like the following function in Yuast. Thanks a lot

    add_filter( ‘wpseo_robots’, ‘yoast_seo_robots_modify_search’ );

    function yoast_seo_robots_modify_search( $robots ) {
    if ( is_search() ) {
    return “noindex, nofollow”;
    } else {
    return $robots;
    }
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    Thank you for contacting Rank Math and bringing your concern to our attention.

    Rank Math has a feature to set your search results URLs to noindex and nofollow. Head over to Rank Math > Titles & Meta > Misc Pages and enable this option

    Noindex search

    Please note that some options are only available when you enable the Advanced Mode in Rank Math. If it’s not showing, you must have chosen to use the Easy Mode. Please follow the steps in this link to switch to Advanced Mode:
    https://rankmath.com/kb/advanced-mode/

    Could you please confirm if this option is already enabled on your website and your search results are still set to index? If so, please also share the affected URL so we can check further.

    I hope that helps.

    Thank you.

    thank you so much Reinelle
    and if you send me function code. i want it for another client who use rank math free and she want to buy business ver and ask me about a code like yoast. i present her that future and thank you again but need code for function

    thanks a lot Reinelle

    Hello,

    Please try using this filter to forcibly set robots meta tag to noindex/nofollow:

    add_filter( 'rank_math/frontend/robots', function( $robots ) {
        if( is_search() ){
            $robots['index'] = 'noindex';
            $robots['follow'] = 'nofollow';
        }
        return $robots;
    });

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

    thnank you so much. and thanks god for rankmath such a great plugin

    Hello,

    We are super happy that this helped you.

    If you have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)

You must be logged in to reply to this ticket.