//include snippet in author archive template
function custom_archive_query( $query )
if ( is_author() && $query->is_main_query())
$query->set( 'post_type', array( 'post', 'deals' , 'books' ) );
return $query;
add_filter( 'pre_get_posts', 'custom_archive_query' );
...
Posted under . Read full article from Stacktips.
Follow author on twitter https://twitter.com/npanigrahy.
No comments:
Post a Comment