terms_pre_query

过滤钩子
apply_filters_ref_array( 'terms_pre_query', array( $this->terms, &$this )
参数
  • (array|null) $terms Return an array of term data to short-circuit WP's term query, or null to allow WP queries to run normally.
    Required:
  • (WP_Term_Query) $query The WP_Term_Query instance, passed by reference.
    Required:
定义位置
相关勾子
sites_pre_querynetworks_pre_queryparse_term_queryrest_term_search_querythe_search_query
相关方法
the_search_querywp_reset_queryregister_block_core_queryremove_query_argget_search_queryis_main_query
引入
5.3.0
弃用
-

terms_pre_query – 这个动作在术语查询运行前执行。这个动作通常用于修改查询参数或在查询运行前执行其他动作。

在查询发生之前过滤术语数组。

返回非空值以绕过WordPress的默认术语查询。

$this->terms = apply_filters_ref_array( 'terms_pre_query', array( $this->terms, &$this ) );

常见问题

FAQs
查看更多 >