How remove tests to especific post type

#388726
  • Resolved Tadeu LF
    Rank Math free

    Hello team,

    is it possible to disable tests on a specific post type?

    I work with real estate and some tests are not required on the “property” post type.

    Thanks.

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

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

    You can add a conditional statement upon using the filter on this link:
    https://rankmath.com/kb/disable-seo-content-tests/

    Here’s a sample filter you can use and customize:

    add_filter( 'rank_math/researches/tests', function( $tests, $type ) {
            global $post;
            if( $post->post_type == 'property' ) {
                    unset(
                            $tests['contentHasTOC']
                    ); 
            } 
        return $tests; 
    }, 10, 2 );

    I hope that helps.

    Thank you.

    Thank you!

    Anas
    Rank Math business

    Hello,

    We are glad we could address your concern. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you do 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 3 replies - 1 through 3 (of 3 total)

The ticket ‘How remove tests to especific post type’ is closed to new replies.