Skip to content

Instantly share code, notes, and snippets.

@ericandrewlewis
Created July 17, 2013 15:44
Show Gist options
  • Save ericandrewlewis/6021778 to your computer and use it in GitHub Desktop.
Save ericandrewlewis/6021778 to your computer and use it in GitHub Desktop.
function pank_wp_reset_postdata( $query ) {
if ( !is_a($query, 'WP_Query' ) )
return false;
if ( !empty($query->post) ) {
$GLOBALS['post'] = $query->post;
setup_postdata($query->post);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment