Skip to content

Instantly share code, notes, and snippets.

@kwcjr
Last active August 16, 2022 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwcjr/96d4b419952fdd7c5b5e3aab1fefe3df to your computer and use it in GitHub Desktop.
Save kwcjr/96d4b419952fdd7c5b5e3aab1fefe3df to your computer and use it in GitHub Desktop.
Get all WP Posts
/**
* Snippet Action: Return Child Site Posts.
* Snippet Type: Return info from Child Sites.
*/
$posts = get_posts( array(
'post_type' => get_post_types(),
'post_status' => 'publish',
'numberposts' => -1,
) );
var_dump( $posts );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment