=== Flexible Custom Post Type Order === Contributors: satishnavjivan1, satishnavjivan Donate link: Tags: multiple post types order, Flexible Custom post types, Flexible Custom post types ordering, posts order, sort Requires at least: 6.2 Tested up to: 6.9 Stable tag: 1.1.3 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html Create multiple re-ordering interfaces for any post type and manage custom post order flexibly and easily. == 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' => 'fcpto_order_1', 'order' => 'ASC', )); ?> have_posts() ) : $data->the_post(); ?> Plugins menu. 3. Once activated you should check with Settings > Multiple Post Types Order 4. Use MPT Order # link which appear into each post types section to re-order. == Frequently Asked Questions == = Where can I find the settings configuration? = It is under Settings > Multiple Post Types Order. = How to apply the custom re-ordering on queries using only parameter = Include a 'orderby' => 'meta_value_num', 'meta_key' => 'fcpto_order_#' parameter within your custom query. = How to apply the custom re-ordering on queries using query code = 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' => 'fcpto_order_1', 'order' => 'ASC', )); ?> have_posts() ) : $data->the_post(); ?>