Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created January 27, 2013 00:03
Show Gist options
  • Save LinzardMac/4645398 to your computer and use it in GitHub Desktop.
Save LinzardMac/4645398 to your computer and use it in GitHub Desktop.
public function get_all_recent() {
global $json_api;
$args=array(
'post_type'=> array( 'post', 'imported_content' ),
'posts_per_page' => 9999
);
$wp_query = new WP_Query();
$wp_query->query($args);
return array(
"posts" => $wp_query
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment