Skip to content

Instantly share code, notes, and snippets.

@jmcclellan
jmcclellan / gist:5572683
Last active December 17, 2015 07:28 — forked from johnsparrow/gist:5572286
Custom post type loop with optional extra arguments
<?php
function do_custom_pt_query( $args = array() ){
global $post;
$def_args = array('post_type' => 'on_air_programs',
'numberposts' => -1,
'posts_per_page' => -1,