Should I noindex page on wordpress?

jyciap11

Elite Member
Joined
Apr 11, 2014
Messages
1,650
Reaction score
441
Hey guys, what do you think about page1,page2,page3 etc. in wordpress? I have to noindex, or leave them index?
Rank Math have this option, Yoast nope.
 
Your question is not clear.

However, if you are talking about pages with slug like page1, page2, page3, then I would suggest you to keep slug focusing on your keywords. Not just because it is important for keyword relevancy in the slug but it also helps user understand about the page in SERP.

And yes if you require any page to rank on google you have to let it index. Simple.
 
I usually noindex pagination pages, they randomly cause cannibalization problems for some websites,
Just make sure the website(s) overall internal links & silo is on point to pass link juice across the website
 
google knows whats up, so no need to do that
 
I usually noindex pagination pages, they randomly cause cannibalization problems for some websites,
Just make sure the website(s) overall internal links & silo is on point to pass link juice across the website
What plugin are you using to do this? Because on Yoast seems there are no option to noindex this kind of pages
 
What plugin are you using to do this? Because on Yoast seems there are no option to noindex this kind of pages
You can use the following filter for Yoast
PHP:
add_filter( 'wpseo_robots', 'my_robots_func' );
function my_robots_func( $robotsstr ) {
    if ( is_page() && is_paged() ) {
        return 'noindex,follow';       
    }
    return $robotsstr;
}
 
I find following link on Google, check if this can help you.
https://yoast.com/pagination-seo-best-practices/?utm_source=chatgpt.com

The issue of noindexing paginated pages in WordPress using the Yoast SEO plugin, Yoast SEO has removed the option to noindex subpages of archives. This change was made because Google has improved its handling of paginated series, and applying a noindex tag to these pages can lead to issues with internal linking and content discovery.
Therefore, it's generally recommended to allow paginated pages to be indexed to ensure proper site navigation and content visibility. If you still wish to noindex paginated pages, you would need to implement custom code, as per Yoast, this approach is not advised due to potential negative impacts on SEO.
 
Hey guys, what do you think about page1,page2,page3 etc. in wordpress? I have to noindex, or leave them index?
Rank Math have this option, Yoast nope.
Leave them to index naturally.
 
Back
Top