Hi – I was able to fix the drag and drop functionality working in the admin by changing the archive drag and drop to yes for the CPT however the order is not showing correctly on the front end when using WP_Query. I’ve set the plugin to automatically use menu_order and have the following code, I’ve also tried explicitly adding orderby ‘menu_order’ and that makes no difference.
$args = array(
'post_type' => 'hall_of_fame',
'posts_per_page' => -1
);
$query = new WP_Query( $args );
I’ve never had any issues with this before (15+ sites) so wondering if there is a bug somewhere?
Thanks,
Joe