Wordpress | Add Custom post types to tags and categories archives
// Add Custom post types to tags and categories archives function add_cpts_to_archive_page( $query ) { if( (is_category() || is_tag()) && $query->is_archive() && empty( $query->query_vars['suppress_filters'] ) ) { $query->set( 'post_type', array( 'post', 'custom-post-type-1', 'custom-post-type-2' )); } return $query; } add_filter( 'pre_get_posts', 'add_cpts_to_archive_page' );