Skip to content

Instantly share code, notes, and snippets.

View dianekinney's full-sized avatar

Diane Kinney dianekinney

View GitHub Profile
@dianekinney
dianekinney / foodquery.php
Last active March 20, 2016 17:36
Merge query for CPT and posts in a specific category
// Loop recipes and cooking posts
$recipe_args = array(
'post_type' => array( 'recipe' ),
'post_status' => 'publish',
'posts_per_page' => 4,
'fields' => 'ids', // Only fetch the post_ids here.
);
// Run the recipe query.
$recipe_query = new WP_Query( $recipe_args);