Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ann71727/ced5903bf3427dbbc0ba435768e163d3 to your computer and use it in GitHub Desktop.
Save ann71727/ced5903bf3427dbbc0ba435768e163d3 to your computer and use it in GitHub Desktop.
WordPress WP_Query() result posts object to an array
<?php
/*
* Convert Object To Array
* https://v123.tw
*/
$args = array(
'showposts' => -1,
'post_type' => 'post',
'post_status' => 'publish'
);
$result = new WP_Query($args);
$data = array_map(
function( $post ) {
return (array) $post;
},
$result->posts
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment