让 Archives.php 包含自定义文章类型

Avatar of Chris Coyier
Chris Coyier

Archives.php 仅显示类型为“post”的内容,但您可以修改它以包含自定义文章类型。将此过滤器添加到您的 functions.php 文件中

function namespace_add_custom_types( $query ) {
  if( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) {
    $query->set( 'post_type', array(
     'post', 'nav_menu_item', 'your-custom-post-type-here'
		));
	  return $query;
	}
}
add_filter( 'pre_get_posts', 'namespace_add_custom_types' );