Skip to content

Instantly share code, notes, and snippets.

@danlefebvre
Created April 7, 2012 18:18
Show Gist options
  • Save danlefebvre/2331100 to your computer and use it in GitHub Desktop.
Save danlefebvre/2331100 to your computer and use it in GitHub Desktop.
Reset post data WP
<?php
//top of page
$page_query = $wp_query;
//... do your stuff, call WP_Query, etc.
//reset $wp_query to current page
$wp_query = $page_query;
wp_reset_postdata();
//display content
the_content();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment