Monday, July 4, 2016

How to Include Custom Post in WordPress Author Archive Page

Is your WordPress theme not showing custom post on Author Archive page? Add the following code snippet to functions.php file. This WordPress hook will include custom post types in WordPress Author archive page.
//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