wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



terms_pre_query › WordPress Filter Hooks

Seit5.3.0
Veraltetn/v
apply_filters_ref_array( 'terms_pre_query', array( $this->terms, &$this )
Parameter: (2)
  • (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.
    Erforderlich: Ja
  • (WP_Term_Query) $query The WP_Term_Query instance, passed by reference.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the terms array before the query takes place.

Return a non-null value to bypass WordPress' default term queries.





Quellcode

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