=== WP Sequential Page Number - Maintain a sequential numbering for the new pages === Contributors: hellomanaf Tags: numbering, page, pages, sequential Requires at least: 4.0 Tested up to: 6.4 Requires PHP: 5.3 Stable tag: 1.1 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html == Description == WP Sequential Page Number is a WordPress plugin to generate a sequential page number. This plugin will override the default ID generated by WordPress to maintain a sequential numbering for the new pages. == Changelog == = 1.1 = * Support latest WordPress. * Added documentation. = 1.0 = * Initial version. == A brief Markdown Example == You can display the page using meta_query(page_id_number). query arguments: `array( 'post_type' => 'page', 'orderby' => 'meta_value', 'order' => 'DESC', 'meta_query' => array( 'meta_value' => array( 'key' => 'page_id_number', 'value' => 680 )));`