Home › Forums › General Issues › Order Post Objects by menu_order › Reply To: Order Post Objects by menu_order
I did not use the Post Types Order, but put the function from kakaroto84 in my functions.php.
Now my code looks like this:
<?php
$child_pages = get_field('child_pages');
objectRSort($child_pages, 'menu_order');
if( $child_pages ): ?>
<ul class="subpages">
<?php foreach( $child_pages as $post): ?>
<?php setup_postdata($post); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
Thank you kakaroto84!
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.