gitextract_wni4x_4h/ ├── .distignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ ├── build-release-zip.yml │ ├── close-stale-issues.yml │ ├── cypress.yml │ ├── dependency-review.yml │ ├── jslint.yml │ ├── php-compatibility.yml │ ├── phpcs.yml │ ├── plugin-check.yml │ ├── push-asset-readme-update.yml │ ├── push-deploy.yml │ ├── repo-automator.yml │ └── wordpress-version-checker.yml ├── .gitignore ├── .nvmrc ├── .phpcs.xml.dist ├── .wordpress-org/ │ └── blueprints/ │ ├── blueprint.json │ └── demo-data.xml ├── .wordpress-version-checker.json ├── .wp-env.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── assets/ │ ├── css/ │ │ └── scss/ │ │ └── simple-page-ordering.scss │ └── js/ │ └── src/ │ └── simple-page-ordering.js ├── class-simple-page-ordering.php ├── composer.json ├── package.json ├── readme.txt ├── simple-page-ordering.php ├── tests/ │ ├── bin/ │ │ ├── initialize.sh │ │ ├── set-wp-config.js │ │ └── wp-cli.yml │ ├── cypress/ │ │ ├── config.config.js │ │ ├── fixtures/ │ │ │ └── example.json │ │ ├── integration/ │ │ │ ├── admin.test.js │ │ │ ├── page-ordering.test.js │ │ │ ├── post-ordering.test.js │ │ │ └── reset-page-ordering.test.js │ │ ├── plugins/ │ │ │ └── index.js │ │ ├── support/ │ │ │ ├── commands.js │ │ │ └── index.js │ │ └── tsconfig.json │ └── test-plugins/ │ └── enable-ordering-for-posts.php └── webpack.config.js