Support

Account

Home Forums Front-end Issues how to get sort post by date picker date Reply To: how to get sort post by date picker date

  • thank u so much @jonathan … big thanks. it is perfectly work. i also paste working and test coding bellow

    <?php 
    $args = array(
    	'cat' => 'events',
    	'posts_per_page' => 2,
    	'orderby' => 'meta_value_num',
    	'order'	=> 'ASC',
    	'meta_type' => 'DATE',
    	'meta_key' => 'date'
    	
    );
    $news = new WP_Query($args); 
    ?>
    <?php while ($news->have_posts()) : $news->the_post(); ?>
    	<li>
    		<h3><?php the_field('date'); ?></h3>
    		<h4><?php the_title(); ?></h4>
    	</li>
    <?php endwhile; ?>