1<?php
2/*
3 * Convert Object To Array
4*/
5
6$args = array(
7 'showposts' => -1,
8 'post_type' => 'post',
9 'post_status' => 'publish'
10);
11$result = new WP_Query($args);
12
13$data = array_map(
14 function( $post ) {
15 return (array) $post;
16 },
17 $result->posts
18);
19
20