Home › Forums › General Issues › Order by Date pick › Reply To: Order by Date pick
Hi @yortem
I have taken the following code straight from the docs above and changed to the field name required:
<?php
// get posts
$posts = get_posts(array(
'post_type' => 'event',
'posts_per_page' => -1,
'meta_key' => 'field_name',
'orderby' => 'meta_value_num',
'order' => 'DESC'
));
if( $posts )
{
foreach( $posts as $post )
{
// ...
}
}
?>
Hope that helps.
Thanks
E
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.