=== WP Sequential Page Number ===
Contributors: hellomanaf
Tags: numbering, page, pages, sequential
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 7.0
Stable tag: 1.3
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

WP Sequential Page Number is a WordPress plugin to generate a sequential page number.

== Description ==
WP Sequential Page Number is a WordPress plugin that generates sequential page numbers for newly created pages, while retaining the default ID for existing pages.

The sequential page number will be displayed in the page listing section, allowing admins or developers to use this ID for querying posts.

== Changelog ==
= 1.1 =
* Support latest WordPress.
* Security improvements.

= 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 
)));`