You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WP_User_Query class allows for a query var called has_published_posts that accepts an array of post types.
The direct result of using the var is that WordPress will add a sub query that finds all post_author values for published posts matching the post types to the WHERE clause.
The post_author column is of course the actual author, not the ones assigned via this plugin, so guest authors will never be returned in this instance.
Ideally we can find a way to make this work how you'd expect.
As it stands this is resulting in SEO plugins like Yoast exclude all guest authors from the author sitemaps.
The text was updated successfully, but these errors were encountered:
The
WP_User_Query
class allows for a query var calledhas_published_posts
that accepts an array of post types.The direct result of using the var is that WordPress will add a sub query that finds all
post_author
values for published posts matching the post types to the WHERE clause.The post_author column is of course the actual author, not the ones assigned via this plugin, so guest authors will never be returned in this instance.
Ideally we can find a way to make this work how you'd expect.
As it stands this is resulting in SEO plugins like Yoast exclude all guest authors from the author sitemaps.
The text was updated successfully, but these errors were encountered: