Remove Canonical URL Tag from Certain Post

#192548
  • Resolved Jen
    Rank Math free

    Hi Team,
    I’m using Rank Math plugin and it turns to be best and light-weight!
    I’ve to remove canonical tag from certain post IDs ONLY.

    I found few posts on WordPress support and Rank Math site but they were related to removing canonical URLs from entire site or category/tag. So I could not find the right solution.

    I tried to use custom function like:

    if( is_single( array( 3861, 4006, 4027, 4010 ) ) ) {
    		return false;

    and this too:

    add_filter( 'rank_math/frontend/canonical', function( $canonical ) {
            // Disable canonical
            $canonical = false;
    	return $canonical;
    }); 
    add_filter( 'rank_math/frontend/canonical', function( $canonical ) {
            //target a page using its page id
            if(is_page('page_id')){
                return false;
            }
    	return $canonical;
    });

    but couldn’t combine above to get canonical URL tag removed for certain Post ids ONLY.
    I mean canonical should remain active on entire site, but disable on certain posts.

    Could you kindly help in providing the exact function.

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

    Hello,

    Thank you for contacting Rank Math and sorry for any inconvenience that might have been caused due to that.

    You can use the following filter to disable the canonical tag for the specific posts:

    /**
     * Allow changing of the canonical URL.
     *
     * @param string $canonical The canonical URL.
     */
    add_filter( 'rank_math/frontend/canonical', function( $canonical ) {
    	
    	if (is_single ( array( 21, 22, 23, 24) )) {
            $canonical = false;
    	
    } 
    return $canonical;
    
    });

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

    Jen
    Rank Math free

    thanks! that worked instantly!

    Ankit
    Rank Math business

    Hello,

    We are super happy that 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)

You must be logged in to reply to this ticket.