Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Couldn't find a solution after a quick google so thought i'd pop a quick post on here.

Trying to remove a automatically added rel=canonical link (which is added by Wordpress SEO plugin - by Yoast).

I actually want google to crawl each of the different subs even though it may not move away from the parent page.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
859 views
Welcome To Ask or Share your Answers For Others

1 Answer

rel="canonical" has nothing to do with crawling. It has to do with indexing and prevents the same page from indexing twice or more.

Anyway, if you still want to do this you can do it by adding this code to your functions.php:

add_filter( 'wpseo_canonical', '__return_false' );

Source: https://yoast.com/wordpress/plugins/seo/api/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...