Home › Forums › General Issues › Order Post Objects by menu_order › Reply To: Order Post Objects by menu_order
Yes, you’re right. The only difference is I want it sorted by menu_order. Do you know how I can do that?
I can get the posts I want using the code below, but then how do I sort them by menu_order?
<?php $post_objects = get_field('child_pages'); // from http://www.advancedcustomfields.com/resources/field-types/post-object/
if( $post_objects ): ?>
<ul>
<?php foreach( $post_objects as $post): // variable must be called $post (IMPORTANT) ?>
<?php setup_postdata($post); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly ?>
<?php endif; ?>
Thanks!
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.