• $titleBlock = get_the_title(); $counter = 0; $postList = array(); $meta_query2 = array(); $type2 = 'post'; $args2 = array('post_type' => $type2, 'post_status' => array('publish'), 'posts_per_page' => 9, 'caller_get_posts'=> -1, 'orderby'=> 'date', 'order'=> 'DESC', 'meta_query' => $meta_query2); $my_query2 = null; $my_query2 = new WP_Query($args2); while ($my_query2->have_posts()) { $my_query2->the_post(); $postList[$counter] = $post; $counter++; } ?>