Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created March 29, 2012 17:06
Show Gist options
  • Select an option

  • Save thomasgriffin/2240007 to your computer and use it in GitHub Desktop.

Select an option

Save thomasgriffin/2240007 to your computer and use it in GitHub Desktop.
$terms = wp_get_object_terms( $post->ID, 'sermon-series' );
$args = array(
'post_type' => 'sermons',
'posts_per_page' => 2,
'tax_query' => array(
array(
'taxonomy' => 'sermon-series',
'field' => 'id',
'terms' => $terms[0]->term_id
)
)
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment