Title: Simple Page Ordering
Author: 10up
Published: <strong>2010 年 8 月 21 日</strong>
Last modified: 2025 年 5 月 19 日

---

搜索插件

![](https://ps.w.org/simple-page-ordering/assets/banner-772x250.png?rev=2716033)

![](https://ps.w.org/simple-page-ordering/assets/icon-256x256.png?rev=2716033)

# Simple Page Ordering

 作者：[10up](https://profiles.wordpress.org/10up/)

[下载](https://downloads.wordpress.org/plugin/simple-page-ordering.2.7.4.zip)

[实时预览](https://cn.wordpress.org/plugins/simple-page-ordering/?preview=1)

 * [详情](https://cn.wordpress.org/plugins/simple-page-ordering/#description)
 * [评价](https://cn.wordpress.org/plugins/simple-page-ordering/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/simple-page-ordering/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/simple-page-ordering/#developers)

 [支持](https://wordpress.org/support/plugin/simple-page-ordering/)

## 描述

Order your pages, hierarchical custom post types, or custom post types with “page-
attributes” with drag and drop right from the built in page list.

Drag and drop the page into the desired position. No new admin menus pages, no clunky,
bolted on user interfaces. Drag and drop on the page or post-type screen.

The plug-in is “capabilities aware” – only users with the ability to edit others’
pages (editors and administrators) will be able to reorder content.

Integrated help is included: click the “help” tab at the top right of the screen.

Please note that the plug-in is not compatible with Internet Explorer 7 and earlier,
due to limitations within those browsers.

### Contributing

We’d love to have you join in on development over on [GitHub](https://github.com/10up/simple-page-ordering).

## 屏幕截图

 * [[
 * Dragging the page to its new position
 * [[
 * Processing indicator

## 安装

 1. Install either via the WordPress.org plugin directory, or by uploading the files
    to your server.
 2. 通过WordPress的“插件”菜单激活插件。
 3. Get to work reordering your content!

## 常见问题

### Why can’t I reorder my posts?

Generic posts are not displayed by menu order – they’re displayed by chronology.
You can theoretically add menu ordering to posts in your code (theme functions.php,
plug-in) by using:

    ```
    add_post_type_support( 'post', 'page-attributes' );
    ```

### Can I make my custom post type take advantage of this plug-in?

Yep. When you register the post type, include the `page-attributes` feature in the
support list. This will add a `Sort by Order` option to the filter links above the
drop downs. Once you sort by order, you can drag and drop the content.

    ```
    'supports' => array( 'title', 'editor', 'page-attributes' ),
    ```

Alternatively, when you register the post type, set `hierarchical` to `true` – hierarchical
post types natively order by menu order.

You can also take advantage of the `simple_page_ordering_is_sortable` filter, which
passes the result of the default check and the post type name, to override default
behavior.

### I want my non-hierarchical post type to be sortable. Help!

See the previous two answers – just add `page-attributes` to the list of supported
post type features.

### I reordered my posts, but the order didn’t change on the front end of my site!

This plug-in doesn’t change any _behavior_ on the front end, it simply changes the
menu order stored in WordPress.

If you want a list of pages or custom post types to display in that defined order,
you must change the post query’s `orderby` parameter to `menu_order` (if it’s not
already).

### I reordered my content, it seemed to work, but when I refreshed, it went back to the old order!

This most likely means the AJAX request – the server side code – failed after you
dropped the content into the new position. Some shared hosts aggressively time out
and limit AJAX requests. Version 2.0 batches these requests so you can try reducing
the number of items it updates on each request using a filter in your theme’s functions.
php or a custom plug-in:

    ```
    add_filter( 'simple_page_ordering_limit', function($number) { return 5; } );
    ```

Where 5 is the number of items to batch on each request (the default is 50). Note
that this example uses PHP 5.3+ callback functions, so if you’re still on PHP 5.2,
you’ll need to add a traditional callback.

### What happened to the drop down box that let me change the number of items on each page in the admin?

This feature is already built into WordPress natively, but a bit tucked away. If
you pull down the “Screen Options” tab up top (on the list of post objects) there’s
a field where you can specify the number of items to show per page. I decided it
was not a very good practice to duplicate this.

### How can I modify sortable post types?

Post types can be included or excluded by using the `simple_page_ordering_is_sortable`
filter.

For example, to exclude the `excluded_post_type` custom post type, add the following
snippet in the theme function file or custom plugin:

    ```
    add_filter( 'simple_page_ordering_is_sortable', function( $sortable, $post_type ) {
        if ( 'excluded_post_type' === $post_type ) {
            return false;
        }
        return $sortable;
    }, 10, 2 );
    ```

To include the `include_post_type` custom post type, add the following snippet in
the theme function file or custom plugin:

    ```
    add_filter( 'simple_page_ordering_is_sortable', function( $sortable, $post_type ) {
        if ( 'include_post_type' === $post_type ) {
            return true;
        }
        return $sortable;
    }, 10, 2 );
    ```

### Can I use REST to order posts?

Yes. The plugin registers the REST endpoint `simple-page-ordering/v1/page_ordering`.

## 评价

![](https://secure.gravatar.com/avatar/03033cc229f237734905e8cb2047ba7124767f811c16ae2a344976bf4c564ac9?
s=60&d=retro&r=g)

### 󠀁[don´t work with Admin Columns plugin](https://wordpress.org/support/topic/dont-work-with-admin-columns-plugin/)󠁿

 [martinrajnoch](https://profiles.wordpress.org/oskarekmaly/) 2024 年 8 月 15 日
3 回复

Hi,if I use Admin Columns Pro plugin, than Simple Page Ordering for custom post 
don´t work, I can´t drag and drop. If I disbale Admin Columns Pro plugin, than I
can drag and drop correctly. Drag and drop stop working after upgrade Admin Columns
plugin to to 6.4.10. Before upgrade Simple Page Ordering works ok. I use Simple 
Page Ordering for custom post type created by ACF. Here is link for free version
Admin Columns plugin:

![](https://secure.gravatar.com/avatar/4afc5815ea82f114abd515e80248546305cd2d37859d4ca92dfe932ceb83d395?
s=60&d=retro&r=g)

### 󠀁[Doesn’t work with Polylang and when filtering by taxonomy](https://wordpress.org/support/topic/doesnt-work-with-polylang-and-when-filtering-by-taxonomy/)󠁿

 [stratboy](https://profiles.wordpress.org/stratboy/) 2024 年 6 月 21 日

As per the title. Not for professional use.

![](https://secure.gravatar.com/avatar/8547db08959474cd4e793b5ac94d9bf63d773368fc753eb10751c27574c5d806?
s=60&d=retro&r=g)

### 󠀁[Fuckin Love it! Thank you!](https://wordpress.org/support/topic/fuckin-love-it-thank-you/)󠁿

 [gettoknowbig3](https://profiles.wordpress.org/gettoknowbig3/) 2024 年 6 月 20 
日 2 回复

Cool plugin in itself. Now if only the page attributes would be updated when reordering…..
oh wait! I see that they do! Incredible, so you can output them with a query as 
intended and give the customer a better experience again. Thank you very much. I
registered only for this review. Thank you !

![](https://secure.gravatar.com/avatar/2632fee9f4284301aa2b6184fc484374195b277ce7df4a25f2d914f614c6758a?
s=60&d=retro&r=g)

### 󠀁[The best of its kind](https://wordpress.org/support/topic/the-best-of-its-kind-29/)󠁿

 [blueflamingo](https://profiles.wordpress.org/blueflamingo/) 2023 年 12 月 13 日
1 回复

We’d struggled for a while implementing custom sort functionality for a long complex
list for a client selling cameras … until we found this plugin. All the issues we
were having with a competitor’s premium plugin were solved by switching to this 
plugin. The main thing was that we were able to manually sort on a custom post type
whilst using custom filters. Works like a dream.

![](https://secure.gravatar.com/avatar/535c991c094ef7d27682832c21408b482b4964efaa5d2d85afa5757dba90e47a?
s=60&d=retro&r=g)

### 󠀁[Does the job wonderfully](https://wordpress.org/support/topic/does-the-job-wonderfully-2/)󠁿

 [George](https://profiles.wordpress.org/quantum_leap/) 2023 年 12 月 10 日 1 回复

Awesome plugin and I like all the filters included!

![](https://secure.gravatar.com/avatar/cf4e2d2a31787e3c5784deb8cfab1efcddae5dc9e30356eaa8a04d205aeb87da?
s=60&d=retro&r=g)

### 󠀁[Best plugin ever](https://wordpress.org/support/topic/best-plugin-ever-462/)󠁿

 [Ed Bernd Jr.](https://profiles.wordpress.org/silvabooks/) 2023 年 9 月 3 日 1 
回复

This makes life so much easier – just drag pages and put them in the order yo want
them. So much easier than editing and trying to remember what number comes next.
Thanks so much for this.

 [ 阅读所有132条评价 ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/)

## 贡献者及开发者

「Simple Page Ordering」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ 10up ](https://profiles.wordpress.org/10up/)
 *   [ Jake Goldman ](https://profiles.wordpress.org/jakemgold/)
 *   [ Ryan Welcher ](https://profiles.wordpress.org/welcher/)
 *   [ Helen Hou-Sandi ](https://profiles.wordpress.org/helen/)
 *   [ Oomph, Inc. ](https://profiles.wordpress.org/thinkoomph/)
 *   [ Jeffrey Paul ](https://profiles.wordpress.org/jeffpaul/)

「Simple Page Ordering」插件已被翻译至 32 种本地化语言。 感谢[所有译者](https://translate.wordpress.org/projects/wp-plugins/simple-page-ordering/contributors)
为本插件所做的贡献。

[帮助将「Simple Page Ordering」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/simple-page-ordering)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/simple-page-ordering/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/simple-page-ordering/)，或通过[RSS](https://plugins.trac.wordpress.org/log/simple-page-ordering/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/simple-page-ordering/)。

## 更新日志

#### 2.7.4 – 2025-05-19

 * **Changed:** Bump WordPress “tested up to” version 6.8 (props [@jeffpaul](https://github.com/jeffpaul)
   via [#239](https://github.com/10up/simple-page-ordering/pull/239), [#240](https://github.com/10up/simple-page-ordering/pull/240)).
 * **Changed:** Bump WordPress minimum from 6.5 to 6.6 (props [@jeffpaul](https://github.com/jeffpaul)
   via [#239](https://github.com/10up/simple-page-ordering/pull/239)).
 * **Security:** Bump `tar-fs` from 2.1.1 to 3.0.8 (props [@dependabot](https://github.com/apps/dependabot),
   [@peterwilsoncc](https://github.com/peterwilsoncc) via [#238](https://github.com/10up/simple-page-ordering/pull/238)).
 * **Security:** Bump `@babel/runtime` from 7.23.9 to 7.27.0 (props [@dependabot](https://github.com/apps/dependabot),
   [@peterwilsoncc](https://github.com/peterwilsoncc) via [#237](https://github.com/10up/simple-page-ordering/pull/237)).

#### 2.7.3 – 2025-03-11

 * **Changed:** Bump WordPress “tested up to” version 6.7 (props [@sudip-md](https://github.com/sudip-md),
   [@godleman](https://github.com/godleman), [@jeffpaul](https://github.com/jeffpaul)
   via [#230](https://github.com/10up/simple-page-ordering/pull/230), [#231](https://github.com/10up/simple-page-ordering/pull/231)).
 * **Changed:** Bump WordPress minimum from 6.4 to 6.5 (props [@sudip-md](https://github.com/sudip-md),
   [@godleman](https://github.com/godleman), [@jeffpaul](https://github.com/jeffpaul)
   via [#230](https://github.com/10up/simple-page-ordering/pull/230), [#231](https://github.com/10up/simple-page-ordering/pull/231)).
 * **Security:** Bump `webpack` from 5.90.0 to 5.94.0 (props [@dependabot](https://github.com/apps/dependabot),
   [@faisal-alvi](https://github.com/faisal-alvi) via [#224](https://github.com/10up/simple-page-ordering/pull/224)).
 * **Security:** Bump `serve-static` from 1.15.0 to 1.16.2 and `express` from 4.19.2
   to 4.21.0 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc)
   via [#226](https://github.com/10up/simple-page-ordering/pull/226)).
 * **Security:** Bump `cookie` from 0.6.0 to 0.7.1 and `express` from 4.21.0 to 
   4.21.1 (props [@dependabot](https://github.com/apps/dependabot), [@Sidsector9](https://github.com/Sidsector9)
   via [#228](https://github.com/10up/simple-page-ordering/pull/228)).
 * **Security:** Bump `serialize-javascript` from 6.0.0 to 6.0.2 and `mocha` from
   10.2.0 to 11.1.0 (props [@dependabot](https://github.com/apps/dependabot), [@dkotter](https://github.com/dkotter)
   via [#232](https://github.com/10up/simple-page-ordering/pull/232)).

#### 2.7.2 – 2024-08-21

 * **Changed:** Bump WordPress “tested up to” version 6.6 (props [@sudip-md](https://github.com/sudip-md),
   [@ankitguptaindia](https://github.com/ankitguptaindia), [@jeffpaul](https://github.com/jeffpaul)
   via [#216](https://github.com/10up/simple-page-ordering/pull/216), [#217](https://github.com/10up/simple-page-ordering/pull/217)).
 * **Changed:** Bump WordPress minimum from 6.3 to 6.4 (props [@sudip-md](https://github.com/sudip-md),
   [@ankitguptaindia](https://github.com/ankitguptaindia), [@jeffpaul](https://github.com/jeffpaul)
   via [#216](https://github.com/10up/simple-page-ordering/pull/216)).
 * **Fixed:** Issue where an `Undefined array key` error occurs when a post parent
   ID does not exist in the `$children_pages` array (props [@xDehy](https://github.com/xDehy),
   [@peterwilsoncc](https://github.com/peterwilsoncc) via [#219](https://github.com/10up/simple-page-ordering/pull/219)).
 * **Security:** Bump `express` from 4.18.2 to 4.19.2, `follow-redirects` from 1.15.5
   to 1.15.6, `postcss` from 7.0.39 to 8.4.33, `10up-toolkit` from 5.2.3 to 6.1.0
   and `webpack-dev-middleware` from 5.3.3 to 5.3.4 (props [@dependabot](https://github.com/apps/dependabot),
   [@faisal-alvi](https://github.com/faisal-alvi) via [#208](https://github.com/10up/simple-page-ordering/pull/208)).
 * **Security:** Bump `braces` from 3.0.2 to 3.0.3 and `ws` from 7.5.9 to 7.5.10(
   props [@dependabot](https://github.com/apps/dependabot), [@iamdharmesh](https://github.com/iamdharmesh)
   via [#214](https://github.com/10up/simple-page-ordering/pull/214)).

#### 2.7.1 – 2024-06-03

 * **Added:** The missing Text Domain (props [@alexclassroom](https://github.com/alexclassroom),
   [@dkotter](https://github.com/dkotter) via [#199](https://github.com/10up/simple-page-ordering/pull/199)).
 * **Added:** The “Testing” section in the `CONTRIBUTING.md` file (props [@kmgalanakis](https://github.com/kmgalanakis),
   [@jeffpaul](https://github.com/jeffpaul) via [#202](https://github.com/10up/simple-page-ordering/pull/202)).
 * **Changed:** Bump WordPress “tested up to” version 6.5 (props [@jeffpaul](https://github.com/jeffpaul),
   [@sudip-md](https://github.com/sudip-md), [@dkotter](https://github.com/dkotter)
   via [#201](https://github.com/10up/simple-page-ordering/pull/201)).
 * **Changed:** Bump WordPress minimum from 5.7 to 6.3 (props [@jeffpaul](https://github.com/jeffpaul),
   [@sudip-md](https://github.com/sudip-md), [@dkotter](https://github.com/dkotter)
   via [#201](https://github.com/10up/simple-page-ordering/pull/201)).
 * **Fixed:** Fixed error in call to `get_walked_pages` for custom post types (props
   [@sissibieber](https://github.com/sissibieber), [@zachgibb](https://github.com/zachgibb),
   [@peterwilsoncc](https://github.com/peterwilsoncc), [@mjot](https://github.com/mjot),
   [@jeffpaul](https://github.com/jeffpaul) via [#200](https://github.com/10up/simple-page-ordering/pull/200)).

#### 2.7.0 – 2024-04-03

 * **Added:** Ability to modify the page hierarchy (props [@amityweb](https://github.com/amityweb),
   [@jeffpaul](https://github.com/jeffpaul), [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@shannonmfisher](https://github.com/shannonmfisher), [@ankitguptaindia](https://github.com/ankitguptaindia),
   [@faisal-alvi](https://github.com/faisal-alvi) via [#172](https://github.com/10up/simple-page-ordering/pull/172)).
 * **Added:** Support for the WordPress.org plugin preview (props [@dkotter](https://github.com/dkotter),
   [@jeffpaul](https://github.com/jeffpaul) via [#183](https://github.com/10up/simple-page-ordering/pull/183)).
 * **Changed:** Replaced custom HTML entity decoding code in favor of the `@wordpress/
   html-entities` package (props [@helen](https://github.com/helen), [@jeffpaul](https://github.com/jeffpaul),
   [@psorensen](https://github.com/psorensen), [@peterwilsoncc](https://github.com/peterwilsoncc)
   via [#189](https://github.com/10up/simple-page-ordering/pull/189)).
 * **Changed:** Bump minimum `node` version from `16` to `20` and clean up NPM dependencies(
   props [@Sidsector9](https://github.com/Sidsector9), [@dkotter](https://github.com/dkotter)
   via [#188](https://github.com/10up/simple-page-ordering/pull/188)).
 * **Changed:** Updated CODEOWNERS (props [@jeffpaul](https://github.com/jeffpaul),
   [@dkotter](https://github.com/dkotter) via [#186](https://github.com/10up/simple-page-ordering/pull/186)).
 * **Changed:** Upgrade the download-artifact from v3 to v4 (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul) via [#194](https://github.com/10up/simple-page-ordering/pull/194)).
 * **Changed:** Replaced [lee-dohm/no-response](https://github.com/lee-dohm/no-response)
   with [actions/stale](https://github.com/actions/stale) to help with closing no-
   response/stale issues (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter)
   via [@195](https://github.com/10up/simple-page-ordering/pull/195)).
 * **Changed:** Disabled auto sync pull requests with target branch (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul) via [#196](https://github.com/10up/simple-page-ordering/pull/196)).
 * **Security:** Bump `@babel/traverse` from `7.20.12` to `7.23.6` (props [@dependabot](https://github.com/apps/dependabot),
   [@ravinderk](https://github.com/ravinderk) via [#184](https://github.com/10up/simple-page-ordering/pull/184)).
 * **Security:** Bump `sharp` from `0.30.7` to `0.32.1` (props [@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9) via [#182](https://github.com/10up/simple-page-ordering/pull/184)).
 * **Security:** Bump `10up-toolkit` from `4.3.1` to `5.2.2` (props [@dependabot](https://github.com/apps/dependabot),
   [@Sidsector9](https://github.com/Sidsector9) via [#182](https://github.com/10up/simple-page-ordering/pull/182)).

#### 2.6.3 – 2023-11-09

 * **Fix:** Deployment issue with version 2.6.2 (props [@Sidsector9](https://github.com/Sidsector9),
   [@dkotter](https://github.com/dkotter) via [#181](https://github.com/10up/simple-page-ordering/pull/181))

#### 2.6.2 – 2023-11-09

 * **Changed:** Update the `wp-compat-validation-tool` composer package to version`
   0.3.1` which properly removes the `.git` directory (props [@Sidsector9](https://github.com/Sidsector9),
   [@dkotter](https://github.com/dkotter) via [#180](https://github.com/10up/simple-page-ordering/pull/180)).

#### 2.6.1 – 2023-11-08

 * **Changed:** Bump WordPress “tested up to” version 6.4 (props [@jeffpaul](https://github.com/jeffpaul),
   [@qasumitbagthariya](https://github.com/qasumitbagthariya), [@faisal-alvi](https://github.com/faisal-alvi)
   via [#177](https://github.com/10up/simple-page-ordering/pull/177)).
 * **Changed:** Remove the .git directory from the `10up-lib` directory (props [@Sidsector9](https://github.com/Sidsector9),
   [@dkotter](https://github.com/dkotter) via [#175](https://github.com/10up/simple-page-ordering/pull/175)).
 * **Security:** Bumps `@babel/traverse` from `7.20.12` to `7.23.2` (props [@peterwilsoncc](https://github.com/peterwilsoncc)
   via [#170](https://github.com/10up/simple-page-ordering/pull/170)).

#### 2.6.0 – 2023-10-25

 * **Added:** A check for minimum required PHP version before loading the plugin(
   props [@vikrampm1](https://github.com/vikrampm1), [@kmgalanakis](https://github.com/kmgalanakis),
   [@Sidsector9](https://github.com/Sidsector9) via [#153](https://github.com/10up/simple-page-ordering/pull/153)).
 * **Added:** Mochawesome reporter added for Cypress test report (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jayedul](https://github.com/jayedul), [@faisal-alvi](https://github.com/faisal-alvi)
   via [#146](https://github.com/10up/simple-page-ordering/pull/146)).
 * **Added:** Repo Automator GitHub Action (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jeffpaul](https://github.com/jeffpaul) via [#158](https://github.com/10up/simple-page-ordering/pull/158)).
 * **Changed:** Bump WordPress “tested up to” version 6.3 (props [@jeffpaul](https://github.com/jeffpaul),
   [@QAharshalkadu](https://github.com/QAharshalkadu)).
 * **Changed:** Slightly change how some of our text is translated, passing in the
   post type (props [@dkotter](https://github.com/dkotter), [@ravinderk](https://github.com/ravinderk)
   via [#149](https://github.com/10up/simple-page-ordering/pull/149)).
 * **Changed:** Updates the Dependency Review GitHub Action to check for GPL-compatible
   licenses (props [@jeffpaul](https://github.com/jeffpaul), [@Sidsector9](https://github.com/Sidsector9)
   via [#147](https://github.com/10up/simple-page-ordering/pull/147)).
 * **Changed:** Updated 10up Cypress Utilities to 0.2.0 (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@peterwilsoncc](https://github.com/peterwilsoncc) via [#160](https://github.com/10up/simple-page-ordering/pull/160)).
 * **Fixed:** The “Are you sure…” popup text to be translatable (props [@kebbet](https://github.com/kebbet),
   [@bmarshall511](https://github.com/bmarshall511), [@dkotter](https://github.com/dkotter)
   via [#148](https://github.com/10up/simple-page-ordering/pull/148)).
 * **Fixed:** Remove code that was no longer needed (props [@dkotter](https://github.com/dkotter),
   [@ravinderk](https://github.com/ravinderk) via [#149](https://github.com/10up/simple-page-ordering/pull/149)).
 * **Fixed:** Add missing escaping (props [@dkotter](https://github.com/dkotter),
   [@ravinderk](https://github.com/ravinderk) via [#149](https://github.com/10up/simple-page-ordering/pull/149)).
 * **Fixed:** Fatal error following the introduction of a namespace (props [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@iamdharmesh](https://github.com/iamdharmesh), [@dkotter](https://github.com/dkotter)
   via [#162](https://github.com/10up/simple-page-ordering/pull/162)).
 * **Fixed:** Hidden pagination in admin screen when Sort by Order is clicked (props
   [@tlovett1](https://github.com/tlovett1), [@dkotter](https://github.com/dkotter),
   [@Sidsector9](https://github.com/Sidsector9) via [#165](https://github.com/10up/simple-page-ordering/pull/165)).
 * **Fixed:** Fatal errors on PHP 5.6 (props [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@Sidsector9](https://github.com/Sidsector9), [@iamdharmesh](https://github.com/iamdharmesh)
   via [#166](https://github.com/10up/simple-page-ordering/pull/166)).
 * **Security:** Bump `word-wrap` from 1.2.3 to 1.2.4 (props [@dependabot](https://github.com/apps/dependabot),
   [@peterwilsoncc](https://github.com/peterwilsoncc) via [#](https://github.com/10up/simple-page-ordering/pull/151)).
 * **Security:** Bump `tough-cookie` from 4.1.2 to 4.1.3 (props [@faisal-alvi](https://github.com/faisal-alvi)
   via [#152](https://github.com/10up/simple-page-ordering/pull/152)).
 * **Security:** Bump `node-sass` from 7.0.3 to 9.0.0 (props [@faisal-alvi](https://github.com/faisal-alvi)
   via [#152](https://github.com/10up/simple-page-ordering/pull/152)).
 * **Security:** Bump `@cypress/request` from 2.88.11 to 3.0.0 to resolve SSRF issue(
   props [@faisal-alvi](https://github.com/faisal-alvi), [@iamdharmesh](https://github.com/iamdharmesh),
   [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter)
   via [#152](https://github.com/10up/simple-page-ordering/pull/152), [#160](https://github.com/10up/simple-page-ordering/pull/160)).

#### 2.5.1 – 2023-05-16

 * **Security:** Ensure we check user permissions properly in our REST endpoint (
   props [@mikhail-net](https://github.com/mikhail-net), [@dkotter](https://github.com/dkotter),
   [@peterwilsoncc](https://github.com/peterwilsoncc)).

#### 2.5.0 – 2023-04-18

**Note that this release bumps the minimum required versions of PHP from 5.6 to 
7.4 and WordPress from 3.8 to 5.7.**

 * **Added:** Feature to reset page order (props [@pattonwebz](https://github.com/pattonwebz),
   [@ruscoe](https://github.com/ruscoe), [@Sidsector9](https://github.com/Sidsector9),
   [@dkotter](https://github.com/dkotter)) via [#129](https://github.com/10up/simple-page-ordering/pull/129).
 * **Added** JS linting GitHub Action (props [@Sidsector9](https://github.com/Sidsector9),
   [@kmgalanakis](https://github.com/kmgalanakis), [@peterwilsoncc](https://github.com/peterwilsoncc))
   via [#136](https://github.com/10up/simple-page-ordering/pull/136).
 * **Changed:** Bump minimum PHP version to 7.4 (props [@vikrampm1](https://github.com/vikrampm1),
   [@Sidsector9](https://github.com/Sidsector9), [@ravinderk](https://github.com/ravinderk),
   [@cadic](https://github.com/cadic)) via [#111](https://github.com/10up/simple-page-ordering/pull/111).
 * **Changed:** Bump minimum required WordPress version from 3.8 to 5.7 (props [@vikrampm1](https://github.com/vikrampm1),
   [@Sidsector9](https://github.com/Sidsector9), [@ravinderk](https://github.com/ravinderk),
   [@cadic](https://github.com/cadic)) via [#111](https://github.com/10up/simple-page-ordering/pull/111).
 * **Changed:** Bump WordPress “tested up to” version 6.2 (props [@av3nger](https://github.com/av3nger)
   via [#138](https://github.com/10up/simple-page-ordering/pull/138)).
 * **Changed:** Run E2E tests on the zip generated by “Build release zip” action(
   props [@iamdharmesh](https://github.com/iamdharmesh), [@jayedul](https://github.com/jayedul),
   [@dkotter](https://github.com/dkotter)) via [#135](https://github.com/10up/simple-page-ordering/pull/135).
 * **Fixed:** Removed a typo in a REST response message (props [@ruscoe](https://github.com/ruscoe),
   [@Sidsector9](https://github.com/Sidsector9)) via [#133](https://github.com/10up/simple-page-ordering/pull/133).
 * **Security:** Removed vulnerable NPM dependencies (props [@vikrampm1](https://github.com/vikrampm1),
   [@Sidsector9](https://github.com/Sidsector9), [@ravinderk](https://github.com/ravinderk),
   [@cadic](https://github.com/cadic)) via [#111](https://github.com/10up/simple-page-ordering/pull/111).
 * **Security:** Bump `cypress` from `9.5.2` to `11.2.0` (props [@iamdharmesh](https://github.com/iamdharmesh),
   [@jayedul](https://github.com/jayedul), [@Sidsector9](https://github.com/Sidsector9))
   via [#120](https://github.com/10up/simple-page-ordering/pull/120).
 * **Security:** Bump `http-cache-semantics` from 4.1.0 to 4.1.1 (props [@peterwilsoncc](https://github.com/peterwilsoncc)
   via [#131](https://github.com/10up/simple-page-ordering/pull/131)).
 * **Security:** Bump `webpack` from `5.75.0` to `5.76.1` (props [@Sidsector9](https://github.com/Sidsector9))
   via [#134](https://github.com/10up/simple-page-ordering/pull/134).

#### 2.4.4 – 2023-01-10

 * **Changed:** Update Support Level from `Active` to `Stable` (props [@jeffpaul](https://github.com/jeffpaul),
   [@dkotter](https://github.com/dkotter) via [#123](https://github.com/10up/simple-page-ordering/pull/123)).
 * **Changed:** Bump WordPress “tested up to” version to 6.1 (props [@jayedul](https://github.com/jayedul),
   [@dkotter](https://github.com/dkotter) via [#118](https://github.com/10up/simple-page-ordering/pull/118)).
 * **Changed:** Update the “Build release zip” workflow to use 10up’s `build-zip`
   action (props [@iamdharmesh](https://github.com/iamdharmesh), [@faisal-alvi](https://github.com/faisal-alvi),
   [@dkotter](https://github.com/dkotter) via [#119](https://github.com/10up/simple-page-ordering/pull/119)).
 * **Security:** Bump `loader-utils` from 2.0.3 to 2.0.4 (props [@dependabot](https://github.com/apps/dependabot)
   via [#115](https://github.com/10up/simple-page-ordering/pull/115)).
 * **Security:** Bump `simple-git` from 3.12.0 to 3.15.1 (props [@dependabot](https://github.com/apps/dependabot)
   via [#121](https://github.com/10up/simple-page-ordering/pull/121)).

[View historical changelog details here](https://github.com/10up/simple-page-ordering/blob/develop/CHANGELOG.md).

## 社区插件

该插件由社区开发和支持。 [为该插件贡献](https://github.com/10up/simple-page-ordering)

## 额外信息

 *  版本 **2.7.4**
 *  最后更新：**12 月前**
 *  活跃安装数量 **100,000+**
 *  WordPress 版本 ** 6.6 或更高版本 **
 *  已测试的最高版本为 **6.8.5**
 *  PHP 版本 ** 7.4 或更高版本 **
 *  语言
 * [Albanian](https://sq.wordpress.org/plugins/simple-page-ordering/) 、 [Catalan](https://ca.wordpress.org/plugins/simple-page-ordering/)、
   [Chinese (China)](https://cn.wordpress.org/plugins/simple-page-ordering/) 、 
   [Chinese (Taiwan)](https://tw.wordpress.org/plugins/simple-page-ordering/) 、
   [Croatian](https://hr.wordpress.org/plugins/simple-page-ordering/) 、 [Czech](https://cs.wordpress.org/plugins/simple-page-ordering/)、
   [Danish](https://da.wordpress.org/plugins/simple-page-ordering/) 、 [Dutch](https://nl.wordpress.org/plugins/simple-page-ordering/)、
   [Dutch (Belgium)](https://nl-be.wordpress.org/plugins/simple-page-ordering/) 、
   [English (Australia)](https://en-au.wordpress.org/plugins/simple-page-ordering/)、
   [English (Canada)](https://en-ca.wordpress.org/plugins/simple-page-ordering/)、
   [English (South Africa)](https://en-za.wordpress.org/plugins/simple-page-ordering/)、
   [English (UK)](https://en-gb.wordpress.org/plugins/simple-page-ordering/) 、 
   [English (US)](https://wordpress.org/plugins/simple-page-ordering/) 、 [Finnish](https://fi.wordpress.org/plugins/simple-page-ordering/)、
   [French (Canada)](https://fr-ca.wordpress.org/plugins/simple-page-ordering/) 、
   [French (France)](https://fr.wordpress.org/plugins/simple-page-ordering/) 、 
   [Galician](https://gl.wordpress.org/plugins/simple-page-ordering/) 、 [German](https://de.wordpress.org/plugins/simple-page-ordering/)、
   [Greek](https://el.wordpress.org/plugins/simple-page-ordering/) 、 [Hebrew](https://he.wordpress.org/plugins/simple-page-ordering/)、
   [Italian](https://it.wordpress.org/plugins/simple-page-ordering/) 、 [Japanese](https://ja.wordpress.org/plugins/simple-page-ordering/)、
   [Lithuanian](https://lt.wordpress.org/plugins/simple-page-ordering/) 、 [Norwegian (Bokmål)](https://nb.wordpress.org/plugins/simple-page-ordering/)、
   [Persian](https://fa.wordpress.org/plugins/simple-page-ordering/) 、 [Portuguese (Brazil)](https://br.wordpress.org/plugins/simple-page-ordering/)、
   [Russian](https://ru.wordpress.org/plugins/simple-page-ordering/) 、 [Spanish (Chile)](https://cl.wordpress.org/plugins/simple-page-ordering/)、
   [Spanish (Mexico)](https://es-mx.wordpress.org/plugins/simple-page-ordering/)、
   [Spanish (Spain)](https://es.wordpress.org/plugins/simple-page-ordering/) 、 
   [Spanish (Venezuela)](https://ve.wordpress.org/plugins/simple-page-ordering/)
   和 [Swedish](https://sv.wordpress.org/plugins/simple-page-ordering/).
 *  [翻译成简体中文](https://translate.wordpress.org/projects/wp-plugins/simple-page-ordering)
 * 标签
 * [menu order](https://cn.wordpress.org/plugins/tags/menu-order/)[order](https://cn.wordpress.org/plugins/tags/order/)
   [ordering](https://cn.wordpress.org/plugins/tags/ordering/)[page](https://cn.wordpress.org/plugins/tags/page/)
   [re-order](https://cn.wordpress.org/plugins/tags/re-order/)
 *  [高级视图](https://cn.wordpress.org/plugins/simple-page-ordering/advanced/)

## 评级

 4.7 星（最高 5 星）。

 *  [  119 条 5 星评价     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=5)
 *  [  2 条 4 星评价     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=4)
 *  [  3 条 3 星评价     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=3)
 *  [  1 条 2 星评价     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=2)
 *  [  6 条 1 星评价     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/simple-page-ordering/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/simple-page-ordering/reviews/)

## 贡献者

 *   [ 10up ](https://profiles.wordpress.org/10up/)
 *   [ Jake Goldman ](https://profiles.wordpress.org/jakemgold/)
 *   [ Ryan Welcher ](https://profiles.wordpress.org/welcher/)
 *   [ Helen Hou-Sandi ](https://profiles.wordpress.org/helen/)
 *   [ Oomph, Inc. ](https://profiles.wordpress.org/thinkoomph/)
 *   [ Jeffrey Paul ](https://profiles.wordpress.org/jeffpaul/)

## 支持

最近两个月解决的问题：

     总计 1，已解决 1

 [查看支持论坛](https://wordpress.org/support/plugin/simple-page-ordering/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](http://10up.com/plugins/simple-page-ordering-wordpress/)