Skip to content

Instantly share code, notes, and snippets.

@elpuas
Created April 11, 2022 00:18
Show Gist options
  • Save elpuas/3632793153654dd36a5eb1750d0aee0a to your computer and use it in GitHub Desktop.
Save elpuas/3632793153654dd36a5eb1750d0aee0a to your computer and use it in GitHub Desktop.
Query By Custom TAxonomy
$sb_args = [
'numberposts' => -1,
'posts_per_page' => 5,
'tax_query' => [
[
'taxonomy' => 'YOUR_CUSTOM_TAXONOMY',
'terms' => 'YOUR_CUSTOM_TERMS',
],
],
'orderby' => 'date',
'order' => 'DESC',
'post_type' => 'speakers',
];
$sb_speakers_query = get_posts( $sb_args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment