Why do I get a 404 for my sitemap index after installing Yoast? [closed]

Go to Admin > Settings > Permalinks and click save without altering anything “Sometimes resetting the permalink structure will quickly solve a 404 error from a recent change to your installation.” See http://kb.yoast.com/article/77-my-sitemap-index-is-giving-a-404-error-what-should-i-do for further details

Removing “Noindex, follow” from pages [closed]

Ooohhh you mean “pagination” pages. Gotcha now! It’s hard to say for sure(I know I know), but at first glance it looks like this block of code would be what you’re after: if ( $wp_query->query_vars[‘paged’] && $wp_query->query_vars[‘paged’] > 1 && isset( $options[‘noindex-subpages’] ) && $options[‘noindex-subpages’] ) { $robots[‘index’] = ‘noindex’; $robots[‘follow’] = ‘follow’; } }

How to add a page to the Yoast breadcrumbs

Here’s the general principle of what you need to do: Hook into the wpseo_breadcrumb_links or wp_seo_get_bc_ancestors API filters. Add your Blog into the WordPress SEO Breadcrumb $links array, using array_splice. Place this in your theme’s functions.php: /** * Conditionally Override Yoast SEO Breadcrumb Trail * http://plugins.svn.wordpress.org/wordpress-seo/trunk/frontend/class-breadcrumbs.php * ———————————————————————————– */ add_filter( ‘wpseo_breadcrumb_links’, ‘wpse_100012_override_yoast_breadcrumb_trail’ ); function wpse_100012_override_yoast_breadcrumb_trail( … Read more