Flexible Custom Post Type Order
Create multiple re-ordering interfaces for any post type and manage custom post order flexibly and easily.
Plugin info
Maintenance & Compatibility
Maintenance score
Actively maintained • Last updated 75 days ago • 1 reviews
Is Flexible Custom Post Type Order abandoned?
Likely maintained (last update 75 days ago).
Compatibility
Languages
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
This plugin helps to generate multiple re-ordering interface for your post types…
Example Display Query Code:
<?php $data = new WP_Query(
array( 'post_type' => 'post',
'post_status' => array( 'publish'),
'posts_per_page' => -1,
'orderby' => 'meta_value_num',
'meta_key' => 'custom_order_type_snv_1',
'order' => 'ASC',
)); ?>
have_posts() ) : $data->the_post(); ?>
Plugin Advantages
- Any Post Types multiple times Re-Order
- Supports Hierarchical Post Types Re-Order for Both – Parent & Child Posts
- Supports individual child posts re-ordering from any parent post
NOTE
If desired results are not displaying on front-end after setting up re-ordering in admin, please click “Reset Order” once and set re-ordering again. This will solve your issue.
We have this plugin compatible gutenberg.
Installation
- Upload
multiple-post-types-orderfolder to your/wp-content/plugins/directory. - Activate the plugin from Admin > Plugins menu.
- Once activated you should check with Settings > Multiple Post Types Order
- Use MPT Order # link which appear into each post types section to re-order.
Frequently Asked Questions
It is under Settings > Multiple Post Types Order.
Include a ‘orderby’ => ‘meta_value_num’, ‘meta_key’ => ‘custom_order_type_snv_#’ parameter within your custom query.
Check query code example below:
<?php $data = new WP_Query(
array( ‘post_type’ => ‘post’,
‘post_status’ => array( ‘publish’),
‘posts_per_page’ => -1,
‘orderby’ => ‘meta_value_num’,
‘meta_key’ => ‘custom_order_type_snv_1’,
‘order’ => ‘ASC’,
)); ?>
have_posts() ) : $data->the_post(); ?>
<?php wp_reset_query(); ?>
Yes. When re-ordering any parent post will automatically re-orders its child posts with them after clicking “Save Order” button. Apart from this, you can also re-order child posts within in the same parent post.
If desired results are not displaying on front-end after setting up re-ordering in admin, please click “Reset Order” once and set re-ordering again. This will solve your issue.
If previously or older posts/pages/cpts are not displaying then simply save/update it again.


