WordPress query_posts display past dates -
i have page displaying future dates want, have been digging around trying find way query only: posts dated prior todays date.
this query:
<?php $args=array( 'post_type' => 'artists', 'orderby' => 'ecpt_featured_month', 'order' => 'asc', 'post_status' => 'future' ); any ideas? if helps, each post artists , have featured month, post = month.
thanks,
ryan
use 1 considering "ecpt_featured_month" custom field:
$args=array( 'post_type' => 'artists', 'orderby' => 'meta_value', 'meta_key' => 'ecpt_featured_month' 'order' => 'asc', 'post_status' => 'future' ); $loop = new wp_query( $args); while ( $loop->have_posts() ) : $loop->the_post(); // write general code display post's title , date endwhile;
Comments
Post a Comment