wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_{$adjacent}_post_where › Les Filtres WordPress

Depuis4.4.0
Dépréciéen/a
apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare( "WHERE p.post_date $op %s AND p.post_type = %s $where", $current_post_date, $post->post_type )
Paramètres: (5)
  • (string) $where The `WHERE` clause in the SQL.
    Requis: Non
    Défaut: %s {$where}", $current_post_date, $post->post_type)
  • (bool) $in_same_term Whether post should be in the same taxonomy term.
    Requis: Oui
  • (int[]|string) $excluded_terms Array of excluded term IDs. Empty string if none were provided.
    Requis: Oui
  • (string) $taxonomy Taxonomy. Used to identify the term used when `$in_same_term` is true.
    Requis: Oui
  • (WP_Post) $post WP_Post object.
    Requis: Oui
Défini(e) dans:
Codex:

Filters the WHERE clause in the SQL for an adjacent post query.

The dynamic portion of the hook name, $adjacent, refers to the type of adjacency, 'next' or 'previous'.

Possible hook names include:

  • get_next_post_where
  • get_previous_post_where




Source

$where = apply_filters( "get_{$adjacent}_post_where", $wpdb->prepare( "WHERE p.post_date $op %s AND p.post_type = %s $where", $current_post_date, $post->post_type ), $in_same_term, $excluded_terms, $taxonomy, $post );