Home › Forums › ACF PRO › how to sort certain field selection › Reply To: how to sort certain field selection
Since you’re setting them as featured when editing the post, I would also include support for “Page Attributes” in the setting for the CPT and then set the order using the built in order field. Then I’d use this field for to order the posts in the query that gets the featured posts
//.....
'orderby' => array('menu_order' => 'ASC');
//.....
or
//.....
'orderby' => 'menu_order',
'order' => 'ASC'
//.....
depending on how you write your WP_Query args
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.