您拥有的分类模板(taxonomy-insight_type-academia.php
) 形式为(taxonomy-{taxonomy}-{term}.php
), 以及is_tax()
是is_tax( \'<taxonomy>\', \'<term>\' )
, 所以在你的pre_get_posts
回调,您应该:
// Use this.
if ( $query->is_tax( \'insight_type\', \'academia\' ) )
// Not this.
if ( $query->is_tax( \'academia\', \'insight_type\' ) )
此外,为了避免与其他查询发生冲突,还应该检查当前查询是否是主查询,以及是否是管理员端请求。
if ( ! is_admin() && $query->is_main_query()
&& $query->is_tax( \'insight_type\', \'academia\' )
)
你可能已经知道了,但我认为这是一个很好的提醒