Site logo

Archived topic

How to deactivate canonical tag created by Generatoepress

1 reply · Started by Abhishek on February 18, 2022

Viewing posts 1–2 of 2

Hi guys. There are two canonical tags created on all of my pages. One is by YOAST SEO, another one is by Generatorpress (Theme). How do I deactivate canonical tags in any one of them?

Hi there,

you can try removing the one added by wordpress using this snippet:

add_action( 'wp', function() {
    remove_action( 'wp_head', 'rel_canonical' );
} );
This archived topic is closed to new replies.