Title: Simple Page Ordering
Author: 10up
Published: <strong>21 augusti 2010</strong>
Last modified: 14 maj 2026

---

Sök tillägg

![](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

 Av [10up](https://profiles.wordpress.org/10up/)

[Ladda ner](https://downloads.wordpress.org/plugin/simple-page-ordering.2.8.0.zip)

[Förhandsgranskning live](https://sv.wordpress.org/plugins/simple-page-ordering/?preview=1)

 * [Detaljer](https://sv.wordpress.org/plugins/simple-page-ordering/#description)
 * [Recensioner](https://sv.wordpress.org/plugins/simple-page-ordering/#reviews)
 *  [Installation](https://sv.wordpress.org/plugins/simple-page-ordering/#installation)
 * [Utveckling](https://sv.wordpress.org/plugins/simple-page-ordering/#developers)

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

## Beskrivning

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.

Tillägget är ”medvetet om behörigheter” – endast användare med möjlighet att redigera
andras sidor (redaktörer och administratörer) kommer att kunna ordna om innehåll.

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

Observera att tillägget inte är kompatibelt med Internet Explorer 7 och tidigare,
på grund av begränsningar i dessa webbläsare.

### Bidragsgivare

Delta gärna i utvecklingen på [GitHub](https://github.com/10up/simple-page-ordering).

## Skärmdumpar

 * [[
 * Sidan dras till dess nya position
 * [[
 * Bearbetningsindikator

## Installation

 1. Installera antingen via WordPress.org tilläggskatalog eller genom att ladda upp
    filerna till din server.
 2. Aktivera tillägget via menyn ”Tillägg” i WordPress.
 3. Kom igång med att sortera om ditt innehåll!

## Vanliga frågor

### Varför kan jag inte sortera om mina inlägg?

Generiska inlägg visas inte efter menysortering – de visas i kronologi. Du kan teoretiskt
lägga till menysortering till inlägg i din kod (via ditt temas functions.php eller
i ett tillägg) genom att använda:

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

### Kan jag få min anpassade inläggstyp att dra fördel av detta tillägg?

Ja. När du registrerar inläggstypen inkludera funktionen `page-attributes` i argumentlistan
suppors. Detta lägger till ett `Manuell sortering`-alternativ till filterlänkarna
ovanför rullgardinsmenyerna. När du har sorterat efter ordning kan du dra och släppa
innehållet.

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

Alternativt, när du registrerar inläggstypen, ställ in `hierarchical` till `true`–
hierarkiska inläggstyper sorteras naturligt efter menysortering.

Du kan också dra nytta av filtret `simple_page_ordering_is_sortable`, som skickar
resultatet av standardkontrollen och inläggstypens namn, för att åsidosätta standardbeteendet.

### Jag vill att min icke-hierarkiska inläggstyp ska vara sorterbar. Hjälp!

Se de två föregående svaren – lägg bara till `page-attributes` i listan över stödda
funktioner för inläggstypen.

### Jag ändrade ordning på mina inlägg, men ordningen ändrades inte på front-end av min webbplats!

Denna tillägg ändrar inte något _beteende_ på frontend-delen, det ändrar helt enkelt
menyordningen som lagras i WordPress.

Om du vill att en lista med sidor eller anpassade inläggstyper ska visas i den definierade
ordningen måste du ändra inläggssökfrågan (query) `orderby`-parameter till `menu_order`(
om den inte redan är det).

### Jag ändrade ordning på mitt innehåll, det verkade fungera, men när jag uppdaterade återgick det till den gamla ordningen!

Detta innebär troligen att AJAX-begäran – koden på serversidan – misslyckades efter
att du släppte innehållet i den nya positionen. Vissa webbhotell har en aggressiv
tidsgräns (timeout) och begränsar AJAX-förfrågningar. Version 2.0 batchar dessa 
förfrågningar så att du kan försöka minska antalet objekt som uppdateras vid varje
begäran med hjälp av ett filter i ditt temas functions.php eller ett anpassat tillägg:

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

Där 5 är antalet artiklar som ska batchas på varje begäran (standardvärdet är 50).
Observera att detta exempel använder PHP 5.3+ återanrops-funktioner, så om du fortfarande
använder PHP 5.2 måste du lägga till ett traditionellt återanrop.

### Vad hände med rullgardinsrutan som lät mig ändra antalet objekt på varje sida i administrations-delen?

Denna funktion är redan inbyggd i WordPress, men lite undangömd. Om du öppnar fliken”
Skärmalternativ” överst (i listan över inläggsobjekt) finns det ett fält där du 
kan ange antalet objekt som ska visas per sida. Jag bestämde mig för att det var
en dålig praxis att duplicera detta.

### Hur kan jag ändra sorterbara inläggstyper?

Inläggstyper kan inkluderas eller exkluderas genom att använda filtret `simple_page_ordering_is_sortable`.

Om du till exempel vill utesluta den anpassade inläggstypen `excluded_post_type`
lägger du till följande kodsnutt i temats functions-fil eller i ett anpassat tillägg:

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

För att inkludera inläggstypen `include_post_type`, lägg till följande kodsnutt 
i temats functions.php-fil eller i ett anpassat tillägg:

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

### Kan jag använda REST för att sortera inlägg?

Ja. Tillägget registrerar REST-ändpunkten `simple-page-ordering/v1/page_ordering`.

### Where do I report security bugs found in this plugin?

Please report security bugs found in the source code of the Simple Page Ordering
plugin through the [Patchstack Vulnerability Disclosure  Program](https://patchstack.com/database/vdp/9e5fbbad-6488-4bba-851e-b300dabc33a2).
The Patchstack team will assist you with verification, CVE assignment, and notify
the developers of this plugin.

## Recensioner

![](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/) 15 augusti 2024 3 
svar

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/) 21 juni 2024

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/) 20 juni 2024 2 svar

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/) 13 december 2023 1
svar

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/) 10 december 2023 1 svar

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/) 3 september 2023 1 svar

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.

 [ Läs alla 132 betyg ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/)

## Bidragsgivare och utvecklare

”Simple Page Ordering” är programvara med öppen källkod. Följande personer har bidragit
till detta tillägg.

Bidragande personer

 *   [ 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” har översatts till 32 språk. Tack till [översättarna](https://translate.wordpress.org/projects/wp-plugins/simple-page-ordering/contributors)
för deras bidrag.

[Översätt ”Simple Page Ordering” till ditt språk.](https://translate.wordpress.org/projects/wp-plugins/simple-page-ordering)

### Intresserad av programutveckling?

[Läs programkoden](https://plugins.trac.wordpress.org/browser/simple-page-ordering/),
kika på [SVN-filförvaret](https://plugins.svn.wordpress.org/simple-page-ordering/)
eller prenumerera på [utvecklarloggen](https://plugins.trac.wordpress.org/log/simple-page-ordering/)
via [RSS](https://plugins.trac.wordpress.org/log/simple-page-ordering/?limit=100&mode=stop_on_copy&format=rss).

## Ändringslogg

#### 2.8.0 – 2026-05-15

 * **Added:** Add filter to disable page row actions (props [@sanketio](https://github.com/sanketio),
   [@faisal-alvi](https://github.com/faisal-alvi) via [#249](https://github.com/10up/simple-page-ordering/pull/249)).
 * **Fixed:** Resolved issue with emoji in page titles (props [@jamesmorrison](https://github.com/jamesmorrison),
   [@dkotter](https://github.com/dkotter) via [#248](https://github.com/10up/simple-page-ordering/pull/248)).
 * **Changed:** Indicate WordPress 7.0 compatibility (props [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@jasperfrontend](https://github.com/jasperfrontend), [@jeffpaul](https://github.com/jeffpaul)
   via [#254](https://github.com/10up/simple-page-ordering/pull/254), [#271](https://github.com/10up/simple-page-ordering/pull/271)).
 * **Changed:** Remove bundled translation file in favour of wp.org distributed 
   file (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter)
   via [#279](https://github.com/10up/simple-page-ordering/pull/279)).
 * **Changed:** Bump WordPress minimum supported version to 6.8 (props [@jeffpaul](https://github.com/jeffpaul),
   [@jasperfrontend](https://github.com/jasperfrontend) via [#271](https://github.com/10up/simple-page-ordering/pull/271)).
 * **Security:** Bump 10up-toolkit to 6.5.0 (props [@jamesmorrison](https://github.com/jamesmorrison),
   [@dkotter](https://github.com/dkotter) via [#247](https://github.com/10up/simple-page-ordering/pull/247)).
 * **Security:** Bump `http-proxy-middleware` from 2.0.6 to 2.0.9 and `tar-fs` from
   2.1.2 to 3.0.9 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc)
   via [#244](https://github.com/10up/simple-page-ordering/pull/244)).
 * **Security:** Bump `bytes` from 3.0.0 to 3.1.2 and `compression` from 1.7.4 to
   1.8.1 (props [@dependabot](https://github.com/apps/dependabot), [@peterwilsoncc](https://github.com/peterwilsoncc)
   via [#246](https://github.com/10up/simple-page-ordering/pull/246)).
 * **Security:** Bump `tmp` from 0.2.1 to 0.2.5, `@wordpress/env` from 9.2.0 to 
   10.28.0, `inquirer` from 8.2.6 to 8.2.7, `form-data` from 2.3.3 to 4.0.4, and`
   @cypress/request` from 3.0.1 to 3.0.9 (props [@dependabot](https://github.com/apps/dependabot),
   [@peterwilsoncc](https://github.com/peterwilsoncc) via [#250](https://github.com/10up/simple-page-ordering/pull/250)).
 * **Security:** Bump `@babel/plugin-transform-modules-systemjs` from 7.23.9 to 
   7.29.4, `postcss` from 8.4.33 to 8.5.14, and `simple-git` from 3.33.0 to 3.36.0(
   props [@dkotter](https://github.com/dkotter), [@dependabot](https://github.com/apps/dependabot)
   via [#277](https://github.com/10up/simple-page-ordering/pull/277)).
 * **Security:** Updates the NPM dependencies throwing security alerts via NPM audit(
   props [@peterwilsoncc](https://github.com/peterwilsoncc), [@dkotter](https://github.com/dkotter)
   via [#256](https://github.com/10up/simple-page-ordering/pull/256)).
 * **Security:** Bump `lodash` from 4.17.21 to 4.18.1 (props [@dependabot](https://github.com/apps/dependabot),
   [@dkotter](https://github.com/dkotter) via [#258](https://github.com/10up/simple-page-ordering/pull/258),
   [#269](https://github.com/10up/simple-page-ordering/pull/269)).
 * **Security:** Bump `webpack` from 5.94.0 to 5.105.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc),
   [@dependabot](https://github.com/apps/dependabot) via [#259](https://github.com/10up/simple-page-ordering/pull/259)).
 * **Security:** Bump `qs` from 6.14.1 to 6.14.2 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#260](https://github.com/10up/simple-page-ordering/pull/260)).
 * **Security:** Bump `immutable` from 4.3.5 to 4.3.8 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#261](https://github.com/10up/simple-page-ordering/pull/261)).
 * **Security:** Bump `svgo` from 3.2.0 to 3.3.3 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#262](https://github.com/10up/simple-page-ordering/pull/262)).
 * **Security:** Bump `simple-git` from 3.22.0 to 3.33.0 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#263](https://github.com/10up/simple-page-ordering/pull/263)).
 * **Security:** Bump `flatted` from 3.2.9 to 3.4.2 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#264](https://github.com/10up/simple-page-ordering/pull/264)).
 * **Security:** Bump `picomatch` from 2.3.1 to 2.3.2 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#266](https://github.com/10up/simple-page-ordering/pull/266)).
 * **Security:** Bump `node-forge` from 1.3.3 to 1.4.0 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#268](https://github.com/10up/simple-page-ordering/pull/268)).
 * **Security:** Bump `follow-redirects` from 1.15.11 to 1.16.0 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#270](https://github.com/10up/simple-page-ordering/pull/270)).
 * **Security:** Bump `fast-uri` from 3.1.0 to 3.1.2 (props [@dkotter](https://github.com/dkotter),
   [@dependabot](https://github.com/apps/dependabot) via [#274](https://github.com/10up/simple-page-ordering/pull/274)).

#### 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)).

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

## Ideellt tillägg

Detta tillägg är utvecklat och stöds av en community. [Bidra till detta tillägg](https://github.com/10up/simple-page-ordering)

## Meta

 *  Version **2.8.0**
 *  Senast uppdaterat **2 veckor sedan**
 *  Aktiva installationer **100 000+**
 *  WordPress-version ** 6.8 eller senare **
 *  Testat upp till **7.0**
 *  PHP-version ** 7.4 eller senare **
 *  Språk
 * [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/)
   och [Swedish](https://sv.wordpress.org/plugins/simple-page-ordering/).
 *  [Översätt till ditt språk](https://translate.wordpress.org/projects/wp-plugins/simple-page-ordering)
 * Etiketter
 * [menu order](https://sv.wordpress.org/plugins/tags/menu-order/)[order](https://sv.wordpress.org/plugins/tags/order/)
   [ordering](https://sv.wordpress.org/plugins/tags/ordering/)[page](https://sv.wordpress.org/plugins/tags/page/)
   [re-order](https://sv.wordpress.org/plugins/tags/re-order/)
 *  [Avancerad vy](https://sv.wordpress.org/plugins/simple-page-ordering/advanced/)

## Betyg

 4.7 av 5 stjärnor.

 *  [  119 5-stjärniga recensioner     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=5)
 *  [  2 4-stjärniga recensioner     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=4)
 *  [  3 3-stjärniga recensioner     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=3)
 *  [  1 2-stjärnig recension     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=2)
 *  [  6 1-stjärniga recensioner     ](https://wordpress.org/support/plugin/simple-page-ordering/reviews/?filter=1)

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

[Se alla recensioner](https://wordpress.org/support/plugin/simple-page-ordering/reviews/)

## Bidragande personer

 *   [ 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/)

## Support

Antal lösta problem under de senaste två månaderna:

     1 av 1

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

## Donera

Skulle du vilja bidra till utvecklingen av detta tillägg?

 [ Donera till det här tillägget ](http://10up.com/plugins/simple-page-ordering-wordpress/)