Home › Forums › Add-ons › Options Page › Change Menu Position of Options Page › Reply To: Change Menu Position of Options Page
Hi guys.
I think the above code should work, perhaps you need to test that the options pages have been added at the time which this filter runs like so:
<?php
echo '<pre>';
print_r( $menu_ord );
echo '</pre>';
die; ?>
You may find that the options pages are not in this array. If not, then the filter is running to early. Set the $priority of the filter to a later one like so:
add_filter('menu_order', 'custom_menu_order', 99);
Thanks
E
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.