disable seo on certain pages

#182642
  • Resolved Bill Eisenhard
    Rank Math free

    Is it possible to not output SEO data on certain pages?
    There is one page in our site that we output custom SEO title, meta desc & OG stuff so any output from RankMath on that page would create duplicate info.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Anas
    Rank Math business

    Hello,

    Thank you for contacting Rank Math.

    Add the following code to the functions.php file

    
    add_action( 'wp_head', function(){
       if ( is_page(1) ) {
           remove_all_actions( 'rank_math/head' );
           add_action( 'wp_head', '_wp_render_title_tag', 2 );
       }
    }, 1 );
    

    The above code will remove the Rank Math data from the page with ID 1. Please change it to match the IDS of the pages from which you want to remove the data.

    I hope that helps. Looking forward to helping you.

    Thanks!

    Hello,

    Glad that helped.

    Please feel free to reach out to us again in case you need any other assistance.

    We are here to help.

    Thank you.

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

You must be logged in to reply to this ticket.