noindex url

#261587
  • Resolved Persian Rivals
    Rank Math free

    HI. If a page like this

    https://persianrivals.ir/panel

    isn’t in the pages and posts section, and also the edit navbar of WordPress doesn’t show. how can I noindex this URL with RankMath?
    is there any section in plugin i\like redirections that I can manually no index no follow URL?
    plz help me ASAP

Viewing 1 replies (of 1 total)
  • Hello,

    Thank you for contacting the support, and sorry for any inconvenience that might have been caused due to that.

    Can you please confirm that this page is a dynamic page and not a post type? If yes, then you can set its robots meta by using our filter:

    /**
     * Allows filtering of the robots meta data.
     *
     * @param array $robots The meta robots directives.
     */
    add_filter( 'rank_math/frontend/robots', function( $robots ) {
        if(is_page( 'panel' )){
            $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.

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

Viewing 1 replies (of 1 total)

The ticket ‘noindex url’ is closed to new replies.