Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_{$adjacent}_post_excluded_terms

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1827       * Possible hook names include:
1828       *
1829       *  - `get_next_post_excluded_terms`
1830       *  - `get_previous_post_excluded_terms`
1831       *
1832       * @since 4.4.0
1833       *
1834       * @param array|string $excluded_terms Array of excluded term IDs. Empty string if none were provided.
1835       */
1836      $excluded_terms = apply_filters( "get_{$adjacent}_post_excluded_terms", $excluded_terms );
1837
1838      if ( $in_same_term || ! empty( $excluded_terms ) ) {
1839           if ( $in_same_term ) {
1840                $join  .= " INNER JOIN $wpdb->term_relationships AS tr ON p.ID = tr.object_id INNER JOIN $wpdb->term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id";
1841                $where .= $wpdb->prepare( 'AND tt.taxonomy = %s', $taxonomy );
1842
1843                if ( ! is_object_in_taxonomy( $post->post_type, $taxonomy ) ) {
1844                     return '';
1845                }