Skip to content

Instantly share code, notes, and snippets.

@agragregra
Last active December 24, 2020 11:14
Show Gist options
  • Save agragregra/26491e810318080b4744 to your computer and use it in GitHub Desktop.
Save agragregra/26491e810318080b4744 to your computer and use it in GitHub Desktop.
WordPress WP_Query by term name
$term = $wp_query->queried_object;
$args = array(
'post_type' => 'specialists',
'posts_per_page' => -1,
'category_name' => $term->name
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment