Skip to content

Instantly share code, notes, and snippets.

@joseph-farruggio
Created August 10, 2020 16:17
Show Gist options
  • Save joseph-farruggio/e79247d6a0180cd90a145e33c15ccb80 to your computer and use it in GitHub Desktop.
Save joseph-farruggio/e79247d6a0180cd90a145e33c15ccb80 to your computer and use it in GitHub Desktop.
<?php
$category = get_field('category');
// query arguments
$args = array(
'category__in' => $category->term_id;
'post_status' => 'publish',
'posts_per_page' => 10,
'orderby' => 'date',
)
$the_query = new WP_Query( $args );
// Run your query through the loop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment