Home › Forums › Front-end Issues › Custom Post List filtered by ACF criteria › Reply To: Custom Post List filtered by ACF criteria
I believe I have managed to get it to almost work but with just the two fields previous mentioned – I still am not sure how to get the third field (“sticky”) into the argument list – any further help is much appreciated.
Thanks.
$args = array(
'paged' => $paged,
'post_type' => 'feature',
'orderby' => 'published',
'order' => 'DESC',
'posts_per_page' => 5,
'meta_query' => array(
array(
'key' => 'hide_from_archive',
'value' => array('0'),
'compare' => 'IN',
)
)
);
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.