I have a Query:
<?php
$feature_big = array(
'posts_per_page' => '1',
'meta_key' => $count_today,
'orderby' => 'meta_value_num'
);
$wp_feature_big = new WP_Query( $feature_big );
?>
<?php if( $wp_feature_big->have_posts() ) : while( $wp_feature_big->have_posts() ) : $wp_feature_big->the_post(); ?>
/----------------------------here------------------/
<?php endwhile; endif?>
Now, i want change value (posts_per_page, meta_key,...) in 'here'. Is it possible? And How? Thank you! Sorry my English :)
'posts_per_page' => '1',here you can change value 1 to 10 to show 10 posts per pageWP_Queryobject inside while loop with new args. then fetch all posts again inside that, need complete explanation ?