Custom Yoast Breadcrumbs URL

That’s an unusual setup – Yoast usually recognizes the right permalinks. You may want to consider changing the way you set up your custom post type, so that it has the desired names and URLs to begin with. You’re likely to have two different URLs that point to the same content, which is undesirable for … Read more

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’; } }

Allowing Yoast SEO plugin to track me

For reference the file that handles the tracking and usage statistics for Yoast SEO is located at, path/to/wp-content/plugins/wordpress-seo/admin/class-tracking.php I have linked to the GitHub repository file in question for further inspection upon which you can see somewhat, relatively, harmless collection of data. However what you determine as “harmless” is case dependent because the opposite could … Read more