Home › Forums › General Issues › Custom archives and post lists in elementor › Reply To: Custom archives and post lists in elementor
I installed Ele Custom Skin, and it does a great job in allowing you to “skin” the lists and archives, but I still need to sort by the event date.
The following is pretty close:
$currentDate = date('Ymd');
$args = array(
'numberposts' => -1,
'meta_key' => 'date',
'orderby' => 'meta_value_num',
'order' => 'ASC',
'meta_query' => array(
array(
'key' => 'date',
'compare' => '>=',
'value' => $currentDate,
),
)
);
Source: https://support.advancedcustomfields.com/forums/topic/how-to-sort-by-acf-field/
However, I’m not sure how to make that code available to Elementor.
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.