[
  {
    "path": ".distignore",
    "content": "# Directories to ignore\n/.git\n/.github\n/.wordpress-org\n/assets\n/node_modules\n/tests\n/vendor\n\n# Files to ignore\n/.*\n/CHANGELOG.md\n/CODE_OF_CONDUCT.md\n/composer.json\n/composer.lock\n/CONTRIBUTING.md\n/CREDITS.md\n/Gruntfile.js\n/LICENSE.md\n/package-lock.json\n/package.json\n/README.md\n/webpack.config.js\n/10up-lib/wp-compat-validation-tool/replace-namespace.sh\n"
  },
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\nindent_style = space\nindent_size = 2\n\n[*.{php,js,css,scss}]\nend_of_line = lf\ninsert_final_newline = true\nindent_style = tab\nindent_size = 4"
  },
  {
    "path": ".eslintignore",
    "content": "webpack.config.js\ntests/\ndist/\nnode_modules/\n"
  },
  {
    "path": ".eslintrc.js",
    "content": "module.exports = {\n\tenv: { jquery: true },\n\textends: ['@10up/eslint-config/wordpress'],\n};\n"
  },
  {
    "path": ".gitattributes",
    "content": "# Directories to ignore\n/.git export-ignore\n/.github export-ignore\n/.wordpress-org export-ignore\n/assets export-ignore\n/bin export-ignore\n/node_modules export-ignore\n/tests export-ignore\n/vendor export-ignore\n\n# Files to ignore\n/.editorconfig export-ignore\n/.gitattributes export-ignore\n/.gitignore export-ignore\n/.phpcs.xml.dist export-ignore\n/.wp-env.json export-ignore\n/.wp-env.override.json export-ignore\n/CHANGELOG.md export-ignore\n/CODE_OF_CONDUCT.md export-ignore\n/composer.json export-ignore\n/composer.lock export-ignore\n/CONTRIBUTING.md export-ignore\n/CREDITS.md export-ignore\n/Gruntfile.js export-ignore\n/LICENSE.md export-ignore\n/package-lock.json export-ignore\n/package.json export-ignore\n/README.md export-ignore\n/webpack.config.js export-ignore\n/.nvmrc export-ignore\n"
  },
  {
    "path": ".github/CODEOWNERS",
    "content": "# These owners will be the default owners for everything in the repo. Unless a later match takes precedence, @jeffpaul and @dkotter, as primary maintainers will be requested for review when someone opens a Pull Request.\n*                   @jeffpaul @dkotter\n\n# GitHub and WordPress.org specifics\n/.github/           @jeffpaul\n/.wordpress-org/    @jeffpaul\nCODE_OF_CONDUCT.md  @jeffpaul\nLICENSE.md          @jeffpaul\n"
  },
  {
    "path": ".github/workflows/build-release-zip.yml",
    "content": "name: Build release zip\n\npermissions:\n  contents: read\n\non:\n  workflow_dispatch:\n  workflow_call:\n  push:\n   branches:\n    - trunk\n\njobs:\n  build:\n    name: Build release zip\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n      - name: Cache node_modules\n        id: cache-node-modules\n        uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2\n        env:\n          cache-name: cache-node-modules\n        with:\n          path: node_modules\n          key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}\n\n      - name: Install Composer dependencies\n        run: composer install --no-dev\n\n      - name: Setup node version and npm cache\n        uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0\n        with:\n          node-version-file: '.nvmrc'\n\n      - name: Install Node dependencies\n        if: steps.cache-node-modules.outputs.cache-hit != 'true'\n        run: npm ci --no-optional\n\n      - name: Build plugin\n        run: npm run build\n\n      - name: Generate ZIP file\n        uses: 10up/action-wordpress-plugin-build-zip@b9e621e1261ccf51592b6f3943e4dc4518fca0d1 # v1.0.2\n"
  },
  {
    "path": ".github/workflows/close-stale-issues.yml",
    "content": "name: 'Close stale issues'\n\n# **What it does**: Closes issues where the original author doesn't respond to a request for information.\n# **Why we have it**: To remove the need for maintainers to remember to check back on issues periodically to see if contributors have responded.\n\non:\n  schedule:\n    # Schedule for every day at 1:30am UTC\n    - cron: '30 1 * * *'\n\npermissions:\n  issues: write\n\njobs:\n  stale:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0\n        with:\n          days-before-stale: 7\n          days-before-close: 7\n          stale-issue-message: >\n            It has been 7 days since more information was requested from you in this issue and we have not heard back. This issue is now marked as stale and will be closed in 7 days, but if you have more information to add then please comment and the issue will stay open.\n          close-issue-message: >\n            This issue has been automatically closed because there has been no response\n            to our request for more information. With only the\n            information that is currently in the issue, we don't have enough information\n            to take action. Please reach out if you have or find the answers we need so\n            that we can investigate further. See [this blog post on bug reports and the\n            importance of repro steps](https://www.lee-dohm.com/2015/01/04/writing-good-bug-reports/)\n            for more information about the kind of information that may be helpful.\n          stale-issue-label: 'stale'\n          close-issue-reason: 'not_planned'\n          any-of-labels: 'needs:feedback'\n          remove-stale-when-updated: true\n"
  },
  {
    "path": ".github/workflows/cypress.yml",
    "content": "name: E2E test\n\non:\n  push:\n    branches:\n     - develop\n     - trunk\n  pull_request:\n    branches:\n      - develop\npermissions:\n  contents: read\n  actions: read\njobs:\n  build:\n    uses: 10up/simple-page-ordering/.github/workflows/build-release-zip.yml@develop\n\n  cypress:\n    needs: build\n    name: ${{ matrix.core.name }}\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        core:\n          - {name: 'WP latest', version: 'latest'}\n          - {name: 'WP minimum', version: 'WordPress/WordPress#6.8'}\n          - {name: 'WP trunk', version: 'WordPress/WordPress#master'}\n\n    steps:\n    - name: Checkout\n      uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n    - name: Download build zip\n      uses: actions/download-artifact@b14cf4c92620c250e1c074ab0a5800e37df86765 # v4.2.0\n      with:\n        name: ${{ github.event.repository.name }}\n        path: ${{ github.event.repository.name }}\n\n    - name: Display structure of downloaded files\n      run: ls -R\n      working-directory: ${{ github.event.repository.name }}\n\n    - name: Cache node_modules\n      id: cache-node-modules\n      uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2\n      env:\n        cache-name: cache-node-modules\n      with:\n        path: |\n          node_modules\n          ~/.cache\n          ~/.npm\n        key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}\n\n    - name: Install dependencies\n      run: npm install\n\n    - name: Set the core version and plugins config\n      run: ./tests/bin/set-wp-config.js --core=${{ matrix.core.version }} --plugins=./${{ github.event.repository.name }},./tests/test-plugins\n\n    - name: Set up WP environment\n      run: npm run env:start\n\n    - name: Test\n      run: npm run cypress:run\n\n    - name: Update summary\n      if: always()\n      run: |\n          npx mochawesome-merge ./tests/cypress/reports/*.json -o tests/cypress/reports/mochawesome.json\n          rm -rf ./tests/cypress/reports/mochawesome-*.json\n          npx mochawesome-json-to-md -p ./tests/cypress/reports/mochawesome.json -o ./tests/cypress/reports/mochawesome.md\n          npx mochawesome-report-generator tests/cypress/reports/mochawesome.json -o tests/cypress/reports/\n          cat ./tests/cypress/reports/mochawesome.md >> $GITHUB_STEP_SUMMARY\n\n    - name: Make artifacts available\n      uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1\n      if: failure()\n      with:\n        name: cypress-artifact\n        retention-days: 2\n        path: |\n            ${{ github.workspace }}/tests/cypress/screenshots/\n            ${{ github.workspace }}/tests/cypress/videos/\n            ${{ github.workspace }}/tests/cypress/logs/\n            ${{ github.workspace }}/tests/cypress/reports/\n"
  },
  {
    "path": ".github/workflows/dependency-review.yml",
    "content": "# Dependency Review Action\n#\n# This Action will scan dependency manifest files that change as part of a Pull Reqest, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.\n#\n# Source repository: https://github.com/actions/dependency-review-action\n# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement\nname: 'Dependency Review'\non: [pull_request]\n\npermissions:\n  contents: read\n\njobs:\n  dependency-review:\n    runs-on: ubuntu-latest\n    steps:\n      - name: 'Checkout Repository'\n        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n      - name: Dependency Review\n        uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3\n        with:\n          license-check: true\n          vulnerability-check: false\n          config-file: 10up/.github/.github/dependency-review-config.yml@trunk\n"
  },
  {
    "path": ".github/workflows/jslint.yml",
    "content": "name: JS Lint\r\n\r\non:\r\n  push:\r\n    branches:\r\n      - develop\r\n      - trunk\r\n  pull_request:\r\n    branches:\r\n      - develop\r\n\r\npermissions:\r\n  checks: write\r\n  contents: read\r\n  pull-requests: write\r\n\r\njobs:\r\n  jslint:\r\n    runs-on: ubuntu-latest\r\n\r\n    steps:\r\n      - name: Checkout\r\n        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\r\n\r\n      - name: Use desired version of NodeJS\r\n        uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0\r\n        with:\r\n          node-version-file: '.nvmrc'\r\n\r\n      - name: Install dependencies\r\n        run: npm install\r\n\r\n      - name: Build\r\n        run: npm run build\r\n\r\n      - name: Generate linting report\r\n        run: npm run lint-js -- --output-file eslint-report.json --format json\r\n        continue-on-error: true\r\n\r\n      - name: Annotate code linting results\r\n        uses: ataylorme/eslint-annotate-action@5f4dc2e3af8d3c21b727edb597e5503510b1dc9c # v2.2.0\r\n        with:\r\n          repo-token: '${{ secrets.GITHUB_TOKEN }}'\r\n          report-json: 'eslint-report.json'\r\n\r\n      - name: Update summary\r\n        run: |\r\n          npm_config_yes=true npx github:10up/eslint-json-to-md --path ./eslint-report.json --output ./eslint-report.md\r\n          cat eslint-report.md >> $GITHUB_STEP_SUMMARY\r\n        if: ${{ failure() }}\r\n"
  },
  {
    "path": ".github/workflows/php-compatibility.yml",
    "content": "name: PHP Compatibility\npermissions:\n  contents: read\n\non:\n  push:\n    branches:\n      - develop\n      - trunk\n  pull_request:\n    branches:\n      - develop\n\njobs:\n  php-compatibility:\n    name: PHP minimum 7.4\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n      - name: Set PHP version\n        uses: shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # v2.32.0\n        with:\n          php-version: 7.4\n          tools: composer:v2\n          coverage: none\n\n      - name: Install dependencies\n        run: composer install\n\n      - name: Run PHP Compatibility\n        run: vendor/bin/phpcs simple-page-ordering.php --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 7.4-\n"
  },
  {
    "path": ".github/workflows/phpcs.yml",
    "content": "name: PHPCS\n\npermissions:\n  contents: read\n\non:\n  push:\n    branches:\n      - develop\n      - trunk\n  pull_request:\n    branches:\n      - develop\n\njobs:\n  phpcs:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n      - name: Set PHP version\n        uses: shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # v2.32.0\n        with:\n          php-version: '7.4'\n          tools: composer:v2\n          coverage: none\n\n      - name: Install dependencies\n        run: composer install\n\n      - name: Run PHPCS\n        run: vendor/bin/phpcs simple-page-ordering.php --extensions=php -s\n"
  },
  {
    "path": ".github/workflows/plugin-check.yml",
    "content": "name: Plugin Check\n\non:\n  push:\n    branches:\n      - develop\n      - trunk\n  pull_request:\n    branches:\n      - develop\n\n# Disable permissions for all available scopes by default.\n# Any needed permissions should be configured at the job level.\npermissions: {}\n\njobs:\n  build:\n    uses: 10up/simple-page-ordering/.github/workflows/build-release-zip.yml@develop\n    permissions:\n      contents: read\n\n  plugin-check:\n    needs: build\n    name: Run Plugin Check\n    runs-on: ubuntu-latest\n    permissions:\n      contents: read\n\n    steps:\n      - name: Checkout repository\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n\n      - name: Download build zip\n        uses: actions/download-artifact@b14cf4c92620c250e1c074ab0a5800e37df86765 # v4.2.0\n        with:\n          name: ${{ github.event.repository.name }}\n          path: ${{ github.event.repository.name }}-artifact\n\n      - name: Remove files from .distignore\n        working-directory: ${{ github.event.repository.name }}-artifact\n        run: |\n          if [ -f .distignore ]; then\n            while IFS= read -r line; do\n              rm -rf \"${line}\"\n            done < .distignore\n          fi\n\n      - name: Display structure of distributed files\n        run: ls -R\n        working-directory: ${{ github.event.repository.name }}-artifact\n\n      - name: Run plugin check\n        uses: wordpress/plugin-check-action@6f5a57e173c065a394b78688f75df543e4011902 # v1.1.5\n        with:\n          build-dir: ${{ github.event.repository.name }}-artifact\n          exclude-directories: '.github,tests,.phpcs.xml.dist'\n          ignore-codes: 'hidden_files,unexpected_markdown_file'\n          slug: simple-page-ordering\n"
  },
  {
    "path": ".github/workflows/push-asset-readme-update.yml",
    "content": "name: Plugin asset/readme update\n\npermissions:\n  contents: read\n\non:\n  push:\n    branches:\n    - trunk\n\njobs:\n  trunk:\n    name: Push to trunk\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n      - name: Setup node version\n        uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0\n        with:\n          node-version-file: .nvmrc\n          cache: npm\n\n      - name: Build\n        run: |\n          npm install\n          npm run build\n          composer install --no-dev\n\n      - name: WordPress.org plugin asset/readme update\n        uses: 10up/action-wordpress-plugin-asset-update@2480306f6f693672726d08b5917ea114cb2825f7 # v2.2.0\n        env:\n          SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}\n          SVN_USERNAME: ${{ secrets.SVN_USERNAME }}\n"
  },
  {
    "path": ".github/workflows/push-deploy.yml",
    "content": "name: Deploy to WordPress.org\n\npermissions:\n  contents: read\n\non:\n  push:\n    tags:\n    - \"*\"\n\njobs:\n  tag:\n    name: New tag\n    runs-on: ubuntu-latest\n\n    steps:\n    - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2\n\n    - name: Build\n      run: |\n        npm install\n        npm run build\n\n    - name: Install Composer dependencies\n      run: composer install --no-dev\n\n    - name: WordPress Plugin Deploy\n      uses: 10up/action-wordpress-plugin-deploy@54bd289b8525fd23a5c365ec369185f2966529c2 # v2.3.0\n      env:\n        SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}\n        SVN_USERNAME: ${{ secrets.SVN_USERNAME }}\n"
  },
  {
    "path": ".github/workflows/repo-automator.yml",
    "content": "name: 'Repo Automator'\n\npermissions:\n  contents: read\n  pull-requests: write\n\non:\n  issues:\n    types:\n      - opened\n  push:\n    branches:\n      - develop\n  pull_request:\n    types:\n      - opened\n      - edited\n      - synchronize\n      - converted_to_draft\n      - ready_for_review\n    branches:\n      - develop\n\njobs:\n  Validate:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: 10up/action-repo-automator@280f5dc0b4ed1b5c50c816e08623bdefce55cdce # v2.1.3\n        with:\n          fail-label: needs:feedback\n          pass-label: needs:code-review\n          conflict-label: needs:refresh\n          reviewers: |\n            team:open-source-practice\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/wordpress-version-checker.yml",
    "content": "name: \"WordPress version checker\"\n\non:\n  push:\n    branches:\n      - develop\n      - trunk\n  pull_request:\n    branches:\n      - develop\n  schedule:\n    - cron: '0 0 * * 1'\n\npermissions:\n  issues: write\n\njobs:\n  wordpress-version-checker:\n    runs-on: ubuntu-latest\n    steps:\n      - name: WordPress version checker\n        uses: skaut/wordpress-version-checker@9d247334f5b30202cb9c1f4aee74c52f37399f69 # v2.2.3\n        with:\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n.eslintcache\nlocalization\nnode_modules\nvendor\n.wp-env.override.json\ndist/\n10up-lib/\ntests/cypress/screenshots\ntests/cypress/videos\ntests/cypress/downloads\ntests/cypress/reports\neslint-report.json\n"
  },
  {
    "path": ".nvmrc",
    "content": "v20.11.0"
  },
  {
    "path": ".phpcs.xml.dist",
    "content": "<?xml version=\"1.0\"?>\n<ruleset name=\"Custom Standard\">\n\t<rule ref=\"WordPress-Core\">\n\t\t<!-- Ignore file naming rules for PSR conventions -->\n\t\t<exclude name=\"WordPress.Files.FileName\"/>\n\t</rule>\n\t<rule ref=\"WordPress.DB\"/>\n\t<rule ref=\"WordPress.Security\"/>\n\t<rule ref=\"WordPressVIPMinimum\"/>\n\t<arg name=\"extensions\" value=\"php\" />\n\t<arg value=\"s\"/>\n\n\t<file>.</file>\n\t<exclude-pattern>10up-lib/</exclude-pattern>\n\t<exclude-pattern>dist/</exclude-pattern>\n\t<exclude-pattern>node_modules/</exclude-pattern>\n\t<exclude-pattern>vendor/</exclude-pattern>\n\t<exclude-pattern>tests/</exclude-pattern>\n\n\t<config name=\"minimum_supported_wp_version\" value=\"6.8\"/>\n\t<config name=\"testVersion\" value=\"7.4-\"/>\n</ruleset>\n"
  },
  {
    "path": ".wordpress-org/blueprints/blueprint.json",
    "content": "{\n\t\"$schema\": \"https://playground.wordpress.net/blueprint-schema.json\",\n\t\"landingPage\": \"\\/wp-admin\\/edit.php?post_type=page\",\n\t\"preferredVersions\": {\n\t\t\"php\": \"7.4\",\n\t\t\"wp\": \"latest\"\n\t},\n\t\"phpExtensionBundles\": [\"kitchen-sink\"],\n\t\"steps\": [\n\t\t{\n\t\t\t\"step\": \"login\",\n\t\t\t\"username\": \"admin\",\n\t\t\t\"password\": \"password\"\n\t\t},\n\t\t{\n\t\t\t\"step\": \"importWxr\",\n\t\t\t\"file\": {\n\t\t\t\t\"resource\": \"url\",\n\t\t\t\t\"url\": \"https:\\/\\/raw.githubusercontent.com\\/10up\\/simple-page-ordering\\/02d35c792a11be5f863c44308485e85505c48f17\\/.wordpress-org\\/blueprints\\/demo-data.xml\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"step\": \"installPlugin\",\n\t\t\t\"pluginZipFile\": {\n\t\t\t\t\"resource\": \"wordpress.org\\/plugins\",\n\t\t\t\t\"slug\": \"simple-page-ordering\"\n\t\t\t},\n\t\t\t\"options\": {\n\t\t\t\t\"activate\": true\n\t\t\t}\n\t\t}\n\t]\n}\n"
  },
  {
    "path": ".wordpress-org/blueprints/demo-data.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->\n<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->\n<!-- You may use this file to transfer that content from one site to another. -->\n<!-- This file is not intended to serve as a complete backup of your site. -->\n\n<!-- To import this information into a WordPress site follow these steps: -->\n<!-- 1. Log in to that site as an administrator. -->\n<!-- 2. Go to Tools: Import in the WordPress admin panel. -->\n<!-- 3. Install the \"WordPress\" importer from the list. -->\n<!-- 4. Activate & Run Importer. -->\n<!-- 5. Upload this file using the form provided on that page. -->\n<!-- 6. You will first be asked to map the authors in this export file to users -->\n<!--    on the site. For each author, you may choose to map to an -->\n<!--    existing user on the site or to create a new user. -->\n<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->\n<!--    contained in this file into your site. -->\n\n\t<!-- generator=\"WordPress/6.4.2\" created=\"2023-12-15 21:08\" -->\n<rss version=\"2.0\"\n\txmlns:excerpt=\"http://wordpress.org/export/1.2/excerpt/\"\n\txmlns:content=\"http://purl.org/rss/1.0/modules/content/\"\n\txmlns:wfw=\"http://wellformedweb.org/CommentAPI/\"\n\txmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n\txmlns:wp=\"http://wordpress.org/export/1.2/\"\n>\n\n<channel>\n\t<title>My WordPress Website</title>\n\t<link>https://playground.wordpress.net/</link>\n\t<description></description>\n\t<pubDate>Fri, 15 Dec 2023 21:08:12 +0000</pubDate>\n\t<language>en-US</language>\n\t<wp:wxr_version>1.2</wp:wxr_version>\n\t<wp:base_site_url>https://playground.wordpress.net/</wp:base_site_url>\n\t<wp:base_blog_url>https://playground.wordpress.net/</wp:base_blog_url>\n\n\t\t<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[admin@localhost.com]]></wp:author_email><wp:author_display_name><![CDATA[admin]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>\n\n\t\t<wp:category>\n\t\t<wp:term_id>1</wp:term_id>\n\t\t<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>\n\t\t<wp:category_parent><![CDATA[]]></wp:category_parent>\n\t\t<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>\n\t</wp:category>\n\t\t\t\t<wp:term>\n\t\t<wp:term_id>179</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[all-pages]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[All Pages]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>180</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[all-pages-flat]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[All Pages Flat]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>188</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-aside]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Aside]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>195</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-audio]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Audio]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>189</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-chat]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Chat]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>181</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[empty-menu]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Empty Menu]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>187</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-gallery]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Gallery]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>191</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-image]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Image]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>190</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-link]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Link]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>192</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-quote]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Quote]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>182</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[short]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Short]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>184</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[social-menu]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Social menu]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>193</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-status]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Status]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>183</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[testing-menu]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Testing Menu]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>1</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Uncategorized]]></wp:term_name>\n\t</wp:term>\n\t\t<wp:term>\n\t\t<wp:term_id>194</wp:term_id>\n\t\t<wp:term_taxonomy><![CDATA[post_format]]></wp:term_taxonomy>\n\t\t<wp:term_slug><![CDATA[post-format-video]]></wp:term_slug>\n\t\t<wp:term_parent><![CDATA[]]></wp:term_parent>\n\t\t<wp:term_name><![CDATA[Video]]></wp:term_name>\n\t</wp:term>\n\t\t\t<wp:term><wp:term_id>179</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[all-pages]]></wp:term_slug><wp:term_name><![CDATA[All Pages]]></wp:term_name>\n</wp:term>\n\t<wp:term><wp:term_id>180</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[all-pages-flat]]></wp:term_slug><wp:term_name><![CDATA[All Pages Flat]]></wp:term_name>\n</wp:term>\n\t<wp:term><wp:term_id>181</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[empty-menu]]></wp:term_slug><wp:term_name><![CDATA[Empty Menu]]></wp:term_name>\n</wp:term>\n\t<wp:term><wp:term_id>182</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[short]]></wp:term_slug><wp:term_name><![CDATA[Short]]></wp:term_name>\n</wp:term>\n\t<wp:term><wp:term_id>184</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[social-menu]]></wp:term_slug><wp:term_name><![CDATA[Social menu]]></wp:term_name>\n</wp:term>\n\t<wp:term><wp:term_id>183</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[testing-menu]]></wp:term_slug><wp:term_name><![CDATA[Testing Menu]]></wp:term_name>\n</wp:term>\n\n\t<generator>https://wordpress.org/?v=6.4.2</generator>\n\n\t\t<item>\n\t\t<title><![CDATA[Pages]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1726</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1726</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1726</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[pages]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>2</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1726]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Categories]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1727</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1727</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1727</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[categories]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>10</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1727]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1729</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1729</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1729</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1729]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>24</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[taxonomy]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1727]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[137]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[category]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Depth]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1731</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1731</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1731</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[depth]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>29</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1731]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 01]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1732</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1732</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1732</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-01]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>30</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1731]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1732]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 02]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1733</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1733</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1733</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-02]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>31</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1732]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1733]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 03]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1734</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1734</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1734</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-03]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>32</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1733]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1734]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 04]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1735</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1735</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1735</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-04]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>33</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1734]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1735]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 05]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1736</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1736</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1736</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-05]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>34</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1735]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1736]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 06]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1737</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1737</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1737</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-06]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>35</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1736]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1737]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 07]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1738</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1738</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1738</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-07]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>36</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1737]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1738]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 08]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1739</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1739</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1739</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-08]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>37</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1738]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1739]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 09]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1740</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1740</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1740</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:24]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:24]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-09]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>38</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1739]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1740]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 10]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1741</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1741</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1741</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-10]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>39</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1740]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1741]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Advanced]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1742</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1742</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1742</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[advanced]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>40</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1742]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Menu Description]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1743</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1743</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Custom Menu Description]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1743</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[menu-description]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>44</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1743]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Menu Title Attribute]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1744</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1744</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[Custom Title Attribute]]></excerpt:encoded>\n\t\t<wp:post_id>1744</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[menu-title-attribute]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>41</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1742]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1744]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Menu CSS Class]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1745</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1745</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1745</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[menu-css-class]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>42</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1742]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1745]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:21:\"custom-menu-css-class\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[#]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[New Window / Tab]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1746</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1746</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1746</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[new-window-tab]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>43</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1742]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1746]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[_blank]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[https://wordpressfoundation.org/]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[twitter.com]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1747</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1747</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1747</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[twitter-com]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>1</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"social-menu\"><![CDATA[Social menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1747]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[https://twitter.com/wordpress]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[facebook.com]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1748</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1748</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1748</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[facebook-com]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>2</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"social-menu\"><![CDATA[Social menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1748]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[https://www.facebook.com/WordPress/]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[github.com]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1749</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1749</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1749</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[github-com]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>3</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"social-menu\"><![CDATA[Social menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1749]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[https://github.com/WordPress/]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[instagram.com]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1750</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1750</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1750</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[instagram-com]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>5</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"social-menu\"><![CDATA[Social menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1750]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[https://www.instagram.com/photomatt/]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[linkedin.com]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1751</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1751</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1751</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[linkedin-com]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>4</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"social-menu\"><![CDATA[Social menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1751]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[custom]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[https://www.linkedin.com/company/wordpress/]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1752</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1752</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1752</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1752]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>2</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"short\"><![CDATA[Short]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[703]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1753</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1753</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1753</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1753]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>3</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"short\"><![CDATA[Short]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1725]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1754</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1754</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1754</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1754]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>4</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"short\"><![CDATA[Short]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1753]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[501]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1755</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1755</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1755</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1755]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>5</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"short\"><![CDATA[Short]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1753]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[155]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1756</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1756</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1756</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1756]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>6</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"short\"><![CDATA[Short]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1753]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[156]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1757</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1757</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1757</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1757]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>7</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"short\"><![CDATA[Short]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[146]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1758</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1758</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1758</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1758]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>2</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[703]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1759</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1759</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1759</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1759]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>3</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[701]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1760</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1760</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1760</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1760]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>4</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1725]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1761</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1761</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1761</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1761]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>7</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[501]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1762</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1762</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1762</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1762]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>8</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[155]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1763</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1763</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1763</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1763]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>9</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[156]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1764</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1764</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1764</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1764]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>10</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[174]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1765</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1765</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1765</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1765]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>11</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[173]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1766</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1766</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1766</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1766]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>12</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[172]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1767</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:25 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1767</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1767</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:25]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:25]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:25]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1767]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>17</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[146]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1768</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1768</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1768</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1768]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>2</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[703]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1769</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1769</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1769</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1769]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>3</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[701]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1770</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1770</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1770</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1770]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>4</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1725]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1771</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1771</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1771</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1771]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>7</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1770]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[501]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1772</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1772</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1772</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1772]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>8</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1770]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[155]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1773</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1773</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1773</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1773]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>9</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1770]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[156]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1774</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1774</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1774</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1774]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>10</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[174]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1775</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1775</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1775</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1775]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>11</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1774]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[173]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1776</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1776</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1776</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1776]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>12</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1775]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[172]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1777</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1777</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1777</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:26]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:26]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1777]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>17</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[146]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1814</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1814</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1814</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1814]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>8</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1726]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1133]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1815</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1815</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1815</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1815]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>9</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"testing-menu\"><![CDATA[Testing Menu]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1726]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1134]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1816</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1816</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1816</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1816]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>5</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1133]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1817</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1817</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1817</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1817]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>6</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1134]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1818</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1818</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1818</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1818]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>173</wp:post_parent>\n\t\t<wp:menu_order>13</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[746]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1819</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1819</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1819</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1819]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>173</wp:post_parent>\n\t\t<wp:menu_order>14</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[748]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1820</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1820</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1820</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1820]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>174</wp:post_parent>\n\t\t<wp:menu_order>15</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[742]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1821</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1821</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1821</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1821]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>174</wp:post_parent>\n\t\t<wp:menu_order>16</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[744]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1822</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1822</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1822</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1822]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>18</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[733]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1823</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1823</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1823</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1823]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>19</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages-flat\"><![CDATA[All Pages Flat]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[735]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Lorem Ipsum]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=146</link>\n\t\t<pubDate>Tue, 04 Sep 2007 16:52:50 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/lorem-ipsum/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.\n\nCras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.\n\nPraesent interdum mollis neque. In egestas nulla eget pede. Integer eu purus sed diam dictum scelerisque. Morbi cursus velit et felis. Maecenas faucibus aliquet erat. In aliquet rhoncus tellus. Integer auctor nibh a nunc fringilla tempus. Cras turpis urna, dignissim vel, suscipit pulvinar, rutrum quis, sem. Ut lobortis convallis dui. Sed nonummy orci a justo. Morbi nec diam eget eros eleifend tincidunt.\n\nՀայերեն\n\nLorem Ipsum-ը տպագրության և տպագրական արդյունաբերության համար նախատեսված մոդելային տեքստ է: Սկսած 1500-ականներից` Lorem Ipsum-ը հանդիսացել է տպագրական արդյունաբերության ստանդարտ մոդելային տեքստ, ինչը մի անհայտ տպագրիչի կողմից տարբեր տառատեսակների օրինակների գիրք ստեղծելու ջանքերի արդյունք է: Այս տեքստը ոչ միայն կարողացել է գոյատևել հինգ դարաշրջան, այլև ներառվել է էլեկտրոնային տպագրության մեջ` մնալով էապես անփոփոխ: Այն հայտնի է դարձել 1960-ականներին Lorem Ipsum բովանդակող Letraset էջերի թողարկման արդյունքում, իսկ ավելի ուշ համակարգչային տպագրության այնպիսի ծրագրերի թողարկման հետևանքով, ինչպիսին է Aldus PageMaker-ը, որը ներառում է Lorem Ipsum-ի տարատեսակներ:\n\nБългарски\n\nLorem Ipsum е елементарен примерен текст, използван в печатарската и типографската индустрия. Lorem Ipsum е индустриален стандарт от около 1500 година, когато неизвестен печатар взема няколко печатарски букви и ги разбърква, за да напечата с тях книга с примерни шрифтове. Този начин не само е оцелял повече от 5 века, но е навлязъл и в публикуването на електронни издания като е запазен почти без промяна. Популяризиран е през 60те години на 20ти век със издаването на Letraset листи, съдържащи Lorem Ipsum пасажи, популярен е и в наши дни във софтуер за печатни издания като Aldus PageMaker, който включва различни версии на Lorem Ipsum.\n\nCatalà\n\nLorem Ipsum és un text de farciment usat per la indústria de la tipografia i la impremta. Lorem Ipsum ha estat el text estàndard de la indústria des de l'any 1500, quan un impressor desconegut va fer servir una galerada de text i la va mesclar per crear un llibre de mostres tipogràfiques. No només ha sobreviscut cinc segles, sinó que ha fet el salt cap a la creació de tipus de lletra electrònics, romanent essencialment sense canvis. Es va popularitzar l'any 1960 amb el llançament de fulls Letraset que contenien passatges de Lorem Ipsum, i més recentment amb programari d'autoedició com Aldus Pagemaker que inclou versions de Lorem Ipsum.\n\nHrvatski\n\nLorem Ipsum je jednostavno probni tekst koji se koristi u tiskarskoj i slovoslagarskoj industriji. Lorem Ipsum postoji kao industrijski standard još od 16-og stoljeća, kada je nepoznati tiskar uzeo tiskarsku galiju slova i posložio ih da bi napravio knjigu s uzorkom tiska. Taj je tekst ne samo preživio pet stoljeća, već se i vinuo u svijet elektronskog slovoslagarstva, ostajući u suštini nepromijenjen. Postao je popularan tijekom 1960-ih s pojavom Letraset listova s odlomcima Lorem Ipsum-a, a u skorije vrijeme sa software-om za stolno izdavaštvo kao što je Aldus PageMaker koji također sadrži varijante Lorem Ipsum-a.\n\nČesky\n\nLorem Ipsum je demonstrativní výplňový text používaný v tiskařském a knihařském průmyslu. Lorem Ipsum je považováno za standard v této oblasti už od začátku 16. století, kdy dnes neznámý tiskař vzal kusy textu a na jejich základě vytvořil speciální vzorovou knihu. Jeho odkaz nevydržel pouze pět století, on přežil i nástup elektronické sazby v podstatě beze změny. Nejvíce popularizováno bylo Lorem Ipsum v šedesátých letech 20. století, kdy byly vydávány speciální vzorníky s jeho pasážemi a později pak díky počítačovým DTP programům jako Aldus PageMaker.\n\nRomâna\n\nLorem Ipsum este pur şi simplu o machetă pentru text a industriei tipografice. Lorem Ipsum a fost macheta standard a industriei încă din secolul al XVI-lea, când un tipograf anonim a luat o planşetă de litere şi le-a amestecat pentru a crea o carte demonstrativă pentru literele respective. Nu doar că a supravieţuit timp de cinci secole, dar şi a facut saltul în tipografia electronică practic neschimbată. A fost popularizată în anii '60 odată cu ieşirea colilor Letraset care conţineau pasaje Lorem Ipsum, iar mai recent, prin programele de publicare pentru calculator, ca Aldus PageMaker care includeau versiuni de Lorem Ipsum.\n\nСрпски\n\nLorem Ipsum је једноставно модел текста који се користи у штампарској и словослагачкој индустрији. Lorem ipsum је био стандард за модел текста још од 1500. године, када је непознати штампар узео кутију са словима и сложио их како би направио узорак књиге. Не само што је овај модел опстао пет векова, него је чак почео да се користи и у електронским медијима, непроменивши се. Популаризован је шездесетих година двадесетог века заједно са листовима летерсета који су садржали Lorem Ipsum пасусе, а данас са софтверским пакетом за прелом као што је Aldus PageMaker који је садржао Lorem Ipsum верзије.\n\nΕλληνικά\n\nΤάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός. Ϊϊϋ, Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός. ΤΑΧΙΣΤΗ ΑΛΩΠΗΞ ΒΑΦΗΣ ΨΗΜΕΝΗ ΓΗ, ΔΡΑΣΚΕΛΙΖΕΙ ΥΠΕΡ ΝΩΘΡΟΥ ΚΥΝΟΣ. Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός. Ϊϊϋ, Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός. ΤΑΧΙΣΤΗ ΑΛΩΠΗΞ ΒΑΦΗΣ ΨΗΜΕΝΗ ΓΗ, ΔΡΑΣΚΕΛΙΖΕΙ ΥΠΕΡ ΝΩΘΡΟΥ ΚΥΝΟΣ.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>146</wp:post_id>\n\t\t<wp:post_date><![CDATA[2007-09-04 09:52:50]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2007-09-04 16:52:50]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[lorem-ipsum]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>7</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Page with comments]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=155</link>\n\t\t<pubDate>Tue, 04 Sep 2007 17:47:47 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/page-with-comments/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Repository-hosted Themes are required to support display of comments on static Pages as well as on single blog Posts.  This static Page has comments, and these comments should be displayed.\nIf the Theme includes a custom option to prevent static Pages from displaying comments, such option must be disabled (i.e. so that static Pages display comments) by default.\nAlso, verify that this Page does not display taxonomy information (e.g. categories or tags) or time-stamp information (Page publish date/time).]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>155</wp:post_id>\n\t\t<wp:post_date><![CDATA[2007-09-04 10:47:47]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2007-09-04 17:47:47]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[page-with-comments]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>3</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:comment>\n\t\t\t<wp:comment_id>3</wp:comment_id>\n\t\t\t<wp:comment_author><![CDATA[Anon]]></wp:comment_author>\n\t\t\t<wp:comment_author_email><![CDATA[anon@example.com]]></wp:comment_author_email>\n\t\t\t<wp:comment_author_url></wp:comment_author_url>\n\t\t\t<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>\n\t\t\t<wp:comment_date><![CDATA[2007-09-04 10:49:28]]></wp:comment_date>\n\t\t\t<wp:comment_date_gmt><![CDATA[2007-09-04 00:49:28]]></wp:comment_date_gmt>\n\t\t\t<wp:comment_content><![CDATA[Anonymous comment.]]></wp:comment_content>\n\t\t\t<wp:comment_approved><![CDATA[1]]></wp:comment_approved>\n\t\t\t<wp:comment_type><![CDATA[comment]]></wp:comment_type>\n\t\t\t<wp:comment_parent>0</wp:comment_parent>\n\t\t\t<wp:comment_user_id>0</wp:comment_user_id>\n\t\t\t\t\t\t\t</wp:comment>\n\t\t\t\t\t<wp:comment>\n\t\t\t<wp:comment_id>4</wp:comment_id>\n\t\t\t<wp:comment_author><![CDATA[tellyworthtest2]]></wp:comment_author>\n\t\t\t<wp:comment_author_email><![CDATA[tellyworth+test2@example.com]]></wp:comment_author_email>\n\t\t\t<wp:comment_author_url></wp:comment_author_url>\n\t\t\t<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>\n\t\t\t<wp:comment_date><![CDATA[2007-09-04 10:49:03]]></wp:comment_date>\n\t\t\t<wp:comment_date_gmt><![CDATA[2007-09-04 00:49:03]]></wp:comment_date_gmt>\n\t\t\t<wp:comment_content><![CDATA[Contributor comment.]]></wp:comment_content>\n\t\t\t<wp:comment_approved><![CDATA[1]]></wp:comment_approved>\n\t\t\t<wp:comment_type><![CDATA[comment]]></wp:comment_type>\n\t\t\t<wp:comment_parent>0</wp:comment_parent>\n\t\t\t<wp:comment_user_id>0</wp:comment_user_id>\n\t\t\t\t\t\t\t</wp:comment>\n\t\t\t\t\t<wp:comment>\n\t\t\t<wp:comment_id>5</wp:comment_id>\n\t\t\t<wp:comment_author><![CDATA[themedemos]]></wp:comment_author>\n\t\t\t<wp:comment_author_email><![CDATA[themeshaperwp+demos@gmail.com]]></wp:comment_author_email>\n\t\t\t<wp:comment_author_url>https://wpthemetestdata.wordpress.com/</wp:comment_author_url>\n\t\t\t<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>\n\t\t\t<wp:comment_date><![CDATA[2007-09-04 10:48:51]]></wp:comment_date>\n\t\t\t<wp:comment_date_gmt><![CDATA[2007-09-04 17:48:51]]></wp:comment_date_gmt>\n\t\t\t<wp:comment_content><![CDATA[Author comment.]]></wp:comment_content>\n\t\t\t<wp:comment_approved><![CDATA[1]]></wp:comment_approved>\n\t\t\t<wp:comment_type><![CDATA[comment]]></wp:comment_type>\n\t\t\t<wp:comment_parent>0</wp:comment_parent>\n\t\t\t<wp:comment_user_id>0</wp:comment_user_id>\n\t\t\t\t\t\t\t</wp:comment>\n\t\t\t\t\t<wp:comment>\n\t\t\t<wp:comment_id>6</wp:comment_id>\n\t\t\t<wp:comment_author><![CDATA[themereviewteam]]></wp:comment_author>\n\t\t\t<wp:comment_author_email><![CDATA[themereviewteam@gmail.com]]></wp:comment_author_email>\n\t\t\t<wp:comment_author_url></wp:comment_author_url>\n\t\t\t<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>\n\t\t\t<wp:comment_date><![CDATA[2014-12-10 01:56:24]]></wp:comment_date>\n\t\t\t<wp:comment_date_gmt><![CDATA[2014-12-10 08:56:24]]></wp:comment_date_gmt>\n\t\t\t<wp:comment_content><![CDATA[nothing useful to say]]></wp:comment_content>\n\t\t\t<wp:comment_approved><![CDATA[0]]></wp:comment_approved>\n\t\t\t<wp:comment_type><![CDATA[comment]]></wp:comment_type>\n\t\t\t<wp:comment_parent>4</wp:comment_parent>\n\t\t\t<wp:comment_user_id>0</wp:comment_user_id>\n\t\t\t\t\t\t\t</wp:comment>\n\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Page with comments disabled]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=156</link>\n\t\t<pubDate>Tue, 04 Sep 2007 17:48:10 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/page-with-comments-disabled/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[This static Page is set not to allow comments. Verify that the Page does not display a comment list, comment reply links, or comment reply form.\nAlso, verify that the Page does not display a \"comments are closed\" type message. Such messages are not suitable for static Pages, and should only be used on blog Posts.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>156</wp:post_id>\n\t\t<wp:post_date><![CDATA[2007-09-04 10:48:10]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2007-09-04 17:48:10]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[page-with-comments-disabled]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>4</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 3]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=172</link>\n\t\t<pubDate>Tue, 11 Dec 2007 06:23:16 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/level-3/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Level 3 of the reverse hierarchy test.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>172</wp:post_id>\n\t\t<wp:post_date><![CDATA[2007-12-11 16:23:16]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2007-12-11 06:23:16]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-3]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>173</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 2]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=173</link>\n\t\t<pubDate>Tue, 11 Dec 2007 06:23:33 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/level-2/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Level 2 of the reverse hierarchy test.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>173</wp:post_id>\n\t\t<wp:post_date><![CDATA[2007-12-11 16:23:33]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2007-12-11 06:23:33]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-2]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>174</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 1]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=174</link>\n\t\t<pubDate>Tue, 11 Dec 2007 23:25:40 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/level-1/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Level 1 of the reverse hierarchy test.  This is to make sure the importer correctly assigns parents and children even when the children come first in the export file.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>174</wp:post_id>\n\t\t<wp:post_date><![CDATA[2007-12-11 16:25:40]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2007-12-11 23:25:40]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-1]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>5</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Clearing Floats]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=501</link>\n\t\t<pubDate>Sun, 01 Aug 2010 16:42:26 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[The last item in this page's content is a thumbnail floated left. There should be page links following it. Make sure any elements after the content are clearing properly.\n\n\tThe float is cleared when it does not stick out the bottom of the parent container, and when other elements that follow it do not wrap around the floated element.\n\n<img class=\"alignleft size-thumbnail wp-image-827\" title=\"Camera\" src=\"https://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg?w=150\" alt=\"\" width=\"160\" /> <!--nextpage-->This is the second page]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>501</wp:post_id>\n\t\t<wp:post_date><![CDATA[2010-08-01 09:42:26]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2010-08-01 16:42:26]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[clearing-floats]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>2</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Front Page]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=701</link>\n\t\t<pubDate>Sat, 21 May 2011 01:49:43 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=701</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Use this static Page to test the Theme's handling of the Front Page template file.\n\nThis is the Front Page content. Use this static Page to test the Front Page output of the Theme. The Theme should properly handle both Blog Posts Index as Front Page and static Page as Front Page.\n\nIf the site is set to display the Blog Posts Index as the Front Page, then this text should not be visible. If the site is set to display a static Page as the Front Page, then this text may or may not be visible. If the Theme does not include a front-page.php template file, then this text should appear on the Front Page when set to display a static Page. If the Theme does include a front-page.php template file, then this text may or may not appear.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>701</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-05-20 18:49:43]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-05-21 01:49:43]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[front-page]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Page A]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=733</link>\n\t\t<pubDate>Fri, 24 Jun 2011 01:38:52 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=733</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>733</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-06-23 18:38:52]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-06-24 01:38:52]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[page-a]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>10</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Page B]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=735</link>\n\t\t<pubDate>Fri, 24 Jun 2011 01:39:14 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=735</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>735</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-06-23 18:39:14]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-06-24 01:39:14]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[page-b]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>11</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 2a]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=742</link>\n\t\t<pubDate>Fri, 24 Jun 2011 02:03:33 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=742</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>742</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-06-23 19:03:33]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-06-24 02:03:33]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-2a]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>174</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[About The Tests]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=1725</link>\n\t\t<pubDate>Mon, 26 Jul 2010 02:40:01 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/about/</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[This site is using the standard WordPress Theme Unit Test Data for content. The Theme Unit Test is a series of posts and pages that match up with a checklist on the WordPress codex. You can use the data and checklist together to test your theme. It is recommended that you test your theme with the Theme Unit Test before submitting your theme to the WordPress.org theme directory.\n\n<h2>WordPress Theme Development Resources</h2>\n\n<ol>\n\t<li>See <a href=\"https://developer.wordpress.org/themes/\">the WordPress Theme Developer Handbook</a> for examples of best practices.</li>\n\t<li>See <a href=\"https://developer.wordpress.org/reference/\">the WordPress Code Reference</a> for more information about WordPress' functions, classes, methods, and hooks.</li>\n\t<li>See <a href=\"https://codex.wordpress.org/Theme_Unit_Test\">Theme Unit Test</a> for a robust test suite for your Theme and get the latest version of the test data you see here.</li>\n\t<li>See <a href=\"https://developer.wordpress.org/themes/release/\">Releasing Your Theme</a> for a guide to submitting your Theme to the <a href=\"https://wordpress.org/themes/\">Theme Directory</a>.</li>\n</ol>]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1725</wp:post_id>\n\t\t<wp:post_date><![CDATA[2010-07-25 19:40:01]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2010-07-26 02:40:01]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[about]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>1</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1824</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1824</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1824</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1824]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>5</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1770]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1133]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1825</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1825</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1825</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1825]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>6</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1770]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1134]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1826</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1826</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1826</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1826]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>173</wp:post_parent>\n\t\t<wp:menu_order>13</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1775]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[746]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1827</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:30 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1827</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1827</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:30]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:30]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:30]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1827]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>173</wp:post_parent>\n\t\t<wp:menu_order>14</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1775]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[748]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1828</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:31 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1828</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1828</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:31]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:31]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1828]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>174</wp:post_parent>\n\t\t<wp:menu_order>15</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1774]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[742]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1829</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:31 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1829</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1829</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:31]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:31]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1829]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>174</wp:post_parent>\n\t\t<wp:menu_order>16</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1774]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[744]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1830</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:31 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1830</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1830</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:31]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:31]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1830]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>18</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[733]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[]]></title>\n\t\t<link>https://playground.wordpress.net//?p=1831</link>\n\t\t<pubDate>Fri, 15 Dec 2023 21:05:31 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://playground.wordpress.net//?p=1831</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[ ]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1831</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 21:05:31]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:05:31]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:05:31]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[1831]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>19</wp:menu_order>\n\t\t<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t<category domain=\"nav_menu\" nicename=\"all-pages\"><![CDATA[All Pages]]></category>\n\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[post_type]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[0]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[735]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:0;s:0:\"\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Sample Page]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=2</link>\n\t\t<pubDate>Fri, 15 Dec 2023 08:09:38 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">http://127.0.0.1:8000/?page_id=2</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[<!-- wp:paragraph -->\n<p>This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://127.0.0.1:8000/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>2</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 08:09:38]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 08:09:38]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:31]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:31]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[open]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[sample-page__trashed]]></wp:post_name>\n\t\t<wp:status><![CDATA[trash]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[default]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[publish]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1702674391]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[sample-page]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Privacy Policy]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=3</link>\n\t\t<pubDate>Fri, 15 Dec 2023 08:09:38 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">http://127.0.0.1:8000/?page_id=3</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://127.0.0.1:8000.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>3</wp:post_id>\n\t\t<wp:post_date><![CDATA[2023-12-15 08:09:38]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2023-12-15 08:09:38]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:32]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:32]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[open]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[privacy-policy__trashed]]></wp:post_name>\n\t\t<wp:status><![CDATA[trash]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[default]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[draft]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1702674392]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[privacy-policy]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[a Blog page]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=703</link>\n\t\t<pubDate>Sat, 21 May 2011 01:51:43 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=703</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Use this static Page to test the Theme's handling of the Blog Posts Index page. If the site is set to display a static Page on the Front Page, and this Page is set to display the Blog Posts Index, then this text should not appear. The title might, so make sure the theme is not supplying a hard-coded title for the Blog Post Index.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>703</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-05-20 18:51:43]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-05-21 01:51:43]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:47]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:47]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[blog__trashed]]></wp:post_name>\n\t\t<wp:status><![CDATA[trash]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_trash_meta_status]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[publish]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_trash_meta_time]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1702674407]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_desired_post_slug]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[blog]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_trash_meta_comments_status]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[a:1:{i:7;s:1:\"0\";}]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:comment>\n\t\t\t<wp:comment_id>7</wp:comment_id>\n\t\t\t<wp:comment_author><![CDATA[ken]]></wp:comment_author>\n\t\t\t<wp:comment_author_email><![CDATA[example@example.com]]></wp:comment_author_email>\n\t\t\t<wp:comment_author_url></wp:comment_author_url>\n\t\t\t<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>\n\t\t\t<wp:comment_date><![CDATA[2014-11-29 21:03:05]]></wp:comment_date>\n\t\t\t<wp:comment_date_gmt><![CDATA[2014-11-30 04:03:05]]></wp:comment_date_gmt>\n\t\t\t<wp:comment_content><![CDATA[I want to learn how to make chinese eggrolls]]></wp:comment_content>\n\t\t\t<wp:comment_approved><![CDATA[post-trashed]]></wp:comment_approved>\n\t\t\t<wp:comment_type><![CDATA[comment]]></wp:comment_type>\n\t\t\t<wp:comment_parent>0</wp:comment_parent>\n\t\t\t<wp:comment_user_id>0</wp:comment_user_id>\n\t\t\t\t\t\t\t</wp:comment>\n\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 2b]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=744</link>\n\t\t<pubDate>Fri, 24 Jun 2011 02:04:03 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=744</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>744</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-06-23 19:04:03]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-06-24 02:04:03]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-2b]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>174</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 3a]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=746</link>\n\t\t<pubDate>Fri, 24 Jun 2011 02:04:24 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=746</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>746</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-06-23 19:04:24]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-06-24 02:04:24]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-3a]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>173</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Level 3b]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=748</link>\n\t\t<pubDate>Fri, 24 Jun 2011 02:04:46 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=748</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>748</wp:post_id>\n\t\t<wp:post_date><![CDATA[2011-06-23 19:04:46]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2011-06-24 02:04:46]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[level-3b]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>173</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Page Image Alignment]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=1133</link>\n\t\t<pubDate>Fri, 15 Mar 2013 23:19:23 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">http://wptest.io/demo/?page_id=1080</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started.\n\nOn the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em>, <em>Medium</em>, <em>Large</em> &amp; <em>Fullsize</em>. Be sure to try this page in RTL mode and it should look the same as LTR.\n<p><img class=\"size-full wp-image-906 aligncenter\" title=\"Image Alignment 580x300\" alt=\"Image Alignment 580x300\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg\" width=\"580\" height=\"300\" /></p>\nThe image above happens to be <em><strong>centered</strong></em>.\n\n<img class=\"size-full wp-image-904 alignleft\" title=\"Image Alignment 150x150\" alt=\"Image Alignment 150x150\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg\" width=\"150\" height=\"150\" /> The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\n\nAs you can see there should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!\n\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\n\n<img class=\"alignnone  wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" />\n\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n\n<img class=\"aligncenter  wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" />\n\nAnd we try the large image again, with the center alignment since that sometimes is a problem. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n\n<img class=\"size-full wp-image-905 alignright\" title=\"Image Alignment 300x200\" alt=\"Image Alignment 300x200\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg\" width=\"300\" height=\"200\" />\n\nAnd now we're going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.\n\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\n\nAnd just when you thought we were done, we're going to do them all over again with captions!\n\n[caption id=\"attachment_906\" align=\"aligncenter\" width=\"580\"]<img class=\"size-full wp-image-906  \" title=\"Image Alignment 580x300\" alt=\"Image Alignment 580x300\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg\" width=\"580\" height=\"300\" /> Look at 580x300 getting some <a title=\"Image Settings\" href=\"https://en.support.wordpress.com/images/image-settings/\">caption</a> love.[/caption]\n\nThe image above happens to be <em><strong>centered</strong></em>. The caption also has a link in it, just to see if it does anything funky.\n\n[caption id=\"attachment_904\" align=\"alignleft\" width=\"150\"]<img class=\"size-full wp-image-904  \" title=\"Image Alignment 150x150\" alt=\"Image Alignment 150x150\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg\" width=\"150\" height=\"150\" /> Bigger caption than the image usually is.[/caption]\n\nThe rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\n\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!\n\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\n\n[caption id=\"attachment_907\" align=\"alignnone\" width=\"1200\"]<img class=\" wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" /> Comment for massive image for your eyeballs.[/caption]\n\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n[caption id=\"attachment_907\" align=\"aligncenter\" width=\"1200\"]<img class=\" wp-image-907\" title=\"Image Alignment 1200x400\" alt=\"Image Alignment 1200x400\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg\" width=\"1200\" height=\"400\" /> This massive image is centered.[/caption]\n\nAnd again with the big image centered. The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\n\n[caption id=\"attachment_905\" align=\"alignright\" width=\"300\"]<img class=\"size-full wp-image-905 \" title=\"Image Alignment 300x200\" alt=\"Image Alignment 300x200\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg\" width=\"300\" height=\"200\" /> Feels good to be right all the time.[/caption]\n\nAnd now we're going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.\n\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\n\nAnd that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked! Last thing is a small image aligned right. Whatever follows should be unaffected. <img class=\"size-full wp-image-904 alignright\" title=\"Image Alignment 150x150\" alt=\"Image Alignment 150x150\" src=\"https://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg\" width=\"150\" height=\"150\" />]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1133</wp:post_id>\n\t\t<wp:post_date><![CDATA[2013-03-15 18:19:23]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2013-03-15 23:19:23]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[open]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[page-image-alignment]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Page Markup And Formatting]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=1134</link>\n\t\t<pubDate>Fri, 15 Mar 2013 23:20:05 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">http://wptest.io/demo/?page_id=1083</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[<strong>Headings</strong>\n<h1>Header one</h1>\n<h2>Header two</h2>\n<h3>Header three</h3>\n<h4>Header four</h4>\n<h5>Header five</h5>\n<h6>Header six</h6>\n<h2>Blockquotes</h2>\nSingle line blockquote:\n<blockquote>Stay hungry. Stay foolish.</blockquote>\nMulti line blockquote with a cite reference:\n<blockquote cite=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote\"><p>The <strong>HTML <code>&lt;blockquote&gt;</code> Element</strong> (or <em>HTML Block Quotation Element</em>) indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see <a href=\"https://developer.mozilla.org/en-US/docs/HTML/Element/blockquote#Notes\">Notes</a> for how to change it). A URL for the source of the quotation may be given using the <strong>cite</strong> attribute, while a text representation of the source can be given using the <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite\" title=\"The HTML Citation Element &lt;cite&gt; represents a reference to a creative work. It must include the title of a work or a URL reference, which may be in an abbreviated form according to the conventions used for the addition of citation metadata.\"><code>&lt;cite&gt;</code></a> element.</p></blockquote>\n<cite>multiple contributors</cite> - MDN HTML element reference - blockquote\n<h2>Tables</h2>\n<table>\n<tbody>\n<tr>\n<th>Employee</th>\n<th class=\"views\">Salary</th>\n<th></th>\n</tr>\n<tr class=\"odd\">\n<td><a href=\"http://example.com/\">Jane</a></td>\n<td>$1</td>\n<td>Because that's all Steve Jobs needed for a salary.</td>\n</tr>\n<tr class=\"even\">\n<td><a href=\"http://example.com\">John</a></td>\n<td>$100K</td>\n<td>For all the blogging he does.</td>\n</tr>\n<tr class=\"odd\">\n<td><a href=\"http://example.com/\">Jane</a></td>\n<td>$100M</td>\n<td>Pictures are worth a thousand words, right? So Tom x 1,000.</td>\n</tr>\n<tr class=\"even\">\n<td><a href=\"http://example.com/\">Jane</a></td>\n<td>$100B</td>\n<td>With hair like that?! Enough said...</td>\n</tr>\n</tbody>\n</table>\n<h2>Definition Lists</h2>\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher \"Big Black\" Boykins, \"Do Work\" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I'll let Bill O'Reilly will <a title=\"We'll Do It Live\" href=\"https://www.youtube.com/watch?v=O_HyZ5aW76c\">explain</a> this one.</dd></dl>\n<h2>Unordered Lists (Nested)</h2>\n<ul>\n\t<li>List item one\n<ul>\n\t<li>List item one\n<ul>\n\t<li>List item one</li>\n\t<li>List item two</li>\n\t<li>List item three</li>\n\t<li>List item four</li>\n</ul>\n</li>\n\t<li>List item two</li>\n\t<li>List item three</li>\n\t<li>List item four</li>\n</ul>\n</li>\n\t<li>List item two</li>\n\t<li>List item three</li>\n\t<li>List item four</li>\n</ul>\n<h2>Ordered List (Nested)</h2>\n<ol start=\"8\">\n \t<li>List item one -start at 8\n<ol>\n \t<li>List item one\n<ol reversed=\"reversed\">\n \t<li>List item one -reversed attribute</li>\n\t<li>List item two</li>\n\t<li>List item three</li>\n\t<li>List item four</li>\n</ol>\n</li>\n\t<li>List item two</li>\n\t<li>List item three</li>\n\t<li>List item four</li>\n</ol>\n</li>\n\t<li>List item two</li>\n\t<li>List item three</li>\n\t<li>List item four</li>\n</ol>\n<h2>HTML Tags</h2>\nThese supported tags come from the WordPress.com code <a title=\"Code\" href=\"https://en.support.wordpress.com/code/\">FAQ</a>.\n\n<strong>Address Tag</strong>\n\n<address>1 Infinite Loop\nCupertino, CA 95014\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\n\nThis is an example of a <a title=\"WordPress Foundation\" href=\"https://wordpressfoundation.org/\">link</a>.\n\n<strong>Abbreviation Tag</strong>\n\nThe abbreviation <abbr title=\"Seriously\">srsly</abbr> stands for \"seriously\".\n\n<strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong>\n\nThe acronym <acronym title=\"For The Win\">ftw</acronym> stands for \"for the win\".\n\n<strong>Big Tag</strong> (<em>deprecated in HTML5</em>)\n\nThese tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.\n\n<strong>Cite Tag</strong>\n\n\"Code is poetry.\" --<cite>Automattic</cite>\n\n<strong>Code Tag</strong>\n\nThis tag styles blocks of code.\n<code>.post-title {\n\tmargin: 0 0 5px;\n\tfont-weight: bold;\n\tfont-size: 38px;\n\tline-height: 1.2;\n\tand here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;\n}</code>\nYou will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.\n\n<strong>Delete Tag</strong>\n\nThis tag will let you <del cite=\"deleted it\">strike out text</del>, but this tag is <em>recommended</em> supported in HTML5 (use the <code>&lt;s&gt;</code> instead).\n\n<strong>Emphasize Tag</strong>\n\nThe emphasize tag should <em>italicize</em> <i>text</i>.\n\n<strong>Horizontal Rule Tag</strong>\n\n<hr />\n\nThis sentence is following a <code>&lt;hr /&gt;</code> tag.\n\n<strong>Insert Tag</strong>\n\nThis tag should denote <ins cite=\"inserted it\">inserted</ins> text.\n\n<strong>Keyboard Tag</strong>\n\nThis scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.\n\n<strong>Preformatted Tag</strong>\n\nThis tag is for preserving whitespace as typed, such as in poetry or ASCII art.\n<h2>The Road Not Taken</h2>\n<pre>\n <cite>Robert Frost</cite>\n\n\n\tTwo roads diverged in a yellow wood,\n\tAnd sorry I could not travel both          (\\_/)\n\tAnd be one traveler, long I stood         (='.'=)\n\tAnd looked down one as far as I could     (\")_(\")\n\tTo where it bent in the undergrowth;\n\n\tThen took the other, as just as fair,\n\tAnd having perhaps the better claim,          |\\_/|\n\tBecause it was grassy and wanted wear;       / @ @ \\\n\tThough as for that the passing there        ( &gt; º &lt; )\n\tHad worn them really about the same,         `&gt;&gt;x&lt;&lt;´\n\t /  O  \\\n\tAnd both that morning equally lay\n\tIn leaves no step had trodden black.\n\tOh, I kept the first for another day!\n\tYet knowing how way leads on to way,\n\tI doubted if I should ever come back.\n\n\tI shall be telling this with a sigh\n\tSomewhere ages and ages hence:\n\tTwo roads diverged in a wood, and I—\n\tI took the one less traveled by,\n\tAnd that has made all the difference.\n\n\n\tand here's a line of some really, really, really, really long text, just to see how it is handled and to find out how it overflows;\n</pre>\n<strong>Quote Tag</strong> for short, inline quotes\n\n<q>Developers, developers, developers...</q> --Steve Ballmer\n\n<strong>Strike Tag</strong> (<em>deprecated in HTML5</em>) and <strong>S Tag</strong>\n\nThis tag shows <strike>strike-through</strike> <s>text</s>.\n\n<strong>Small Tag</strong>\n\nThis tag shows <small>smaller<small> text.</small></small>\n\n<strong>Strong Tag</strong>\n\nThis tag shows <strong>bold<strong> text.</strong></strong>\n\n<strong>Subscript Tag</strong>\n\nGetting our science styling on with H<sub>2</sub>O, which should push the \"2\" down.\n\n<strong>Superscript Tag</strong>\n\nStill sticking with science and Albert Einstein's E = MC<sup>2</sup>, which should lift the 2 up.\n\n<strong>Teletype Tag </strong>(<em>obsolete in HTML5</em>)\n\nThis rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.\n\n<strong>Underline Tag</strong> <em>deprecated in HTML 4, re-introduced in HTML5 with other semantics</em>\n\nThis tag shows <u>underlined text</u>.\n\n<strong>Variable Tag</strong>\n\nThis allows you to denote <var>variables</var>.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1134</wp:post_id>\n\t\t<wp:post_date><![CDATA[2013-03-15 18:20:05]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2013-03-15 23:20:05]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[open]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[open]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[page-markup-and-formatting]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1725</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Ελληνικά-Greek]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=1809</link>\n\t\t<pubDate>Fri, 14 Feb 2020 10:31:00 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=1809</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Typography tests for Greek Ελληνική σελίδα 1ου επιπέδου και δείγμα τυπογραφίας.\n\n<strong>Headings Επικεφαλίδες</strong>\n<h1>Επικεφαλίδα 1 Header one</h1>\n<h2>Επικεφαλίδα 2 Header two</h2>\n<h3>Επικεφαλίδα 3 Header three</h3>\n<h4>Επικεφαλίδα 2 Header four</h4>\n<h5>Επικεφαλίδα 5 Header five</h5>\n<h6>Επικεφαλίδα 6Header six</h6>\n<h2>Παράθεση άλλου Blockquotes</h2>\nSingle line blockquote: Μια γραμμή\n<blockquote>Πάντα να είναι περίεργος.</blockquote>\nΠολλές γραμμέ με αναφορά Multi line blockquote with a cite reference:\n<blockquote>Το <strong>HTML <code>&lt;blockquote&gt;</code> Element</strong> (ή <em>HTML Block Quotation Element</em>) καταδεικνύει ότι το κείμενο έχει μια παράθεση. Συνήθως οπτικοποιείται με εσοχή (δείτε <a href=\"https://developer.mozilla.org/en-US/docs/HTML/Element/blockquote#Notes\">Σημειώσεις</a> για το πως να το αλλάξετε. Ίσως να δίνεται και URL πηγής με την χρήση του <strong>cite</strong> attribute, μπλα, μπλα <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite\"><code>&lt;cite&gt;</code></a> .</blockquote>\n<cite>multiple contributors - MDN HTML element reference - blockquote</cite>\n<h2>Πίνακες Tables</h2>\n<table>\n<thead>\n<tr>\n<th>Υπάλληλος Employee</th>\n<th>Μισθός Salary</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<th><a href=\"http://example.org/\">Τάδε κάποιος</a></th>\n<td>$1</td>\n<td>Γιατί τόσα χρειάζεται για να ζήσει</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Jane Doe</a></th>\n<td>$100K</td>\n<td>For all the blogging she does.</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Fred Bloggs</a></th>\n<td>$100M</td>\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\n</tr>\n<tr>\n<th><a href=\"http://example.org/\">Jane Bloggs</a></th>\n<td>$100B</td>\n<td>With hair like that?! Enough said...</td>\n</tr>\n</tbody>\n</table>\n<h2>Λίστες Definition Lists</h2>\n<dl>\n \t<dt>Τίτλος λίστας Definition List Title</dt>\n \t<dd>Υποδιαίρεση λίστας Definition list division.</dd>\n</dl>\n<h2>Λίστα με κουκίδες Unordered Lists (Nested)</h2>\n<ul>\n \t<li>Πρώτο στοιχείο List item one\n<ul>\n \t<li>Στοιχείο πρώτο List item one\n<ul>\n \t<li>Στοιχείο λίστα ένα List item one</li>\n \t<li>Στοιχείο λίστας δύο List item two</li>\n</ul>\n</li>\n \t<li>Στοιχείο δεύτερο -item two</li>\n</ul>\n</li>\n \t<li>Στοιχειο δύο List item two</li>\n</ul>\n<h2>Αριθμημένη λίστα(Nested)</h2>\n<ol start=\"8\">\n \t<li>Στοιχειο ξεκινά με 8-start at 8\n<ol>\n \t<li>Στοιχείο λίστας ενα List item one\n<ol>\n \t<li>Στοιχείο λίστας ενα  -reversed attribute</li>\n \t<li>Στοιχείο λίστας δύο</li>\n</ol>\n</li>\n \t<li>Δεύτερο στοιχείο</li>\n</ol>\n</li>\n \t<li>Στοιχείο δύο</li>\n</ol>\n<h2>Ετικέττες HTML Tags</h2>\n<strong>Διεύθυνση Address Tag</strong>\n\n<address>1 Απέραντη διαδρομή Infinite Loop\nΑπλωπολή , ΤΚ 95014\nΕλλάδα</address><strong>Αγκυρωση Anchor Tag (aka. Link)</strong>\n\nΠάραδειγμα <a title=\"WordPress Foundation\" href=\"https://wordpressfoundation.org/\">συνδέσμου</a>.\n\n<strong>Συντομογραφία Abbreviation Tag</strong>\n\nΗ συντομογραφία <abbr title=\"Και τα λοιπά\">κτλ</abbr> σημαίνει \"Και τα λοιπά\".\n\n<strong>Ακρωνύμιο Acronym Tag</strong>\n\nΤο ακρωνύμιο <acronym title=\"Κύριος\">κυρ</acronym> σημαίνει \"Κύριος\".\n\n<strong>Big Tag</strong>\n\nΑυτό είναι <big>μεγάλο</big> θέμα\n\n<strong>Cite Tag</strong>\n\n\"Φάε το φαϊ σου\" --<cite>Όλες οι μαμάδες</cite>\n\n<strong>Code Tag</strong>\n\nThis tag styles blocks of code.\n<code>.post-title {\nmargin: 0 0 5px;\nfont-weight: bold;\nfont-size: 38px;\nline-height: 1.2;\nκαι μία γραμμή με πολύ πάρα πολύ υπερβολικά πάρα πολύ μεγάλο κείμενο που πρέπει να δούμε πως το χειρίζεται η γραμματοσειρά και αν ξεχειλίζει από τις γραμμές και δημιουργεί πρόβλημα;\n}</code>\n\n<strong>Διαγραφή Delete Tag</strong>\n\nΜπορείτε να <del>διαγράφεται κείμενο</del>, αλλά δεν <em>συνιστάται</em>.\n\n<strong>Έμφαση Emphasize Tag</strong>\n\nΘα πρέπει να κάνει <em>ιταλικ italicize το</em> <i>κείμενο</i>.\n\n<strong>Εισαγωγή Insert Tag</strong>\n\nΑυτό το tag υποδηλώνει <ins cite=\"Εισαγωγή inserted it\">εισηγμένο inserted </ins> κείμενο.\n\n<strong>Keyboard Tag</strong>\n\nΑυτό το ελάχιστο γνωστό <kbd>κείμενο πληκτρολογίου keyboard Tag</kbd>, συνήθως μορφοποιείται όμοια με το <code>&lt;κώδικα code&gt;</code> tag.\n\n<strong>Προδιαμορφωμένο Preformatted Tag</strong>\n<h2>Ο Δρόμος που δεν διάλεξα - The Road Not Taken</h2>\n<pre><cite>Robert Frost</cite>\n\t Δυο δρόμοι διασταυρώθηκαν σ' ένα χρυσαφένιο δάσος ,\n\t Και προς λύπη μου και τους δυο τα πόδια μου να ταξιδέψουν δεν μπορούσαν\n\t Κι επί μακρόν εστάθηκα , καθώς ένας ήμουν ταξιδευτής μονάχος ,\n\t κι έστρεψα το βλέμμα μου στον πρώτο όσο να χαθεί στο βάθος\n\t μέχρι εκεί που χάνονταν στα άγρια χόρτα που βλαστούσαν.\n\n\tTwo roads diverged in a yellow wood,\n\tAnd sorry I could not travel both          (\\_/)\n\tAnd be one traveler, long I stood         (='.'=)\n\tAnd looked down one as far as I could     (\")_(\")\n\tTo where it bent in the undergrowth;\n\n\tThen took the other, as just as fair,\n\tAnd having perhaps the better claim,          |\\_/|\n\tBecause it was grassy and wanted wear;       / @ @ \\\n\tThough as for that the passing there        ( &gt; º &lt; )\n\tHad worn them really about the same,         `&gt;&gt;x&lt;&lt;´\n\t /  O  \\\n\tAnd both that morning equally lay\n\tIn leaves no step had trodden black.\n\tOh, I kept the first for another day!\n\tYet knowing how way leads on to way,\n\tI doubted if I should ever come back.\n\n\tI shall be telling this with a sigh\n\tSomewhere ages and ages hence:\n\tTwo roads diverged in a wood, and I—\n\tI took the one less traveled by,\n\tAnd that has made all the difference.\n\n\n\tκαι μία μακριά, πάρα πολύ μακριά, υπερβολικά μακροσκελής δίχως νόημα πρόταση για να δούμε πως το χειρίζεται το θέμα εμφάνισης και αν αναδιπλώνεται, κρύβεται ή ξεχειλίζει;\n</pre>\n<strong>Quote Tag</strong> for short, inline quotes\n\n<q>Προγραμματιστές, προγραμματιστές, developers...</q> --Steve Ballmer\n\n<strong>Strike Tag</strong> (<em>deprecated in HTML5</em>) and <strong>S Tag</strong>\n\nΑυτή η ετικέτα είναι <span style=\"text-decoration: line-through;\">με διαγράμμιση strike-through</span> <s>κείμενο text</s>.\n\n<strong>Μικρά Small Tag</strong>\n\nΑυτή η ετικέτα είναι <small>μικρότερο smaller<small> κείμενο text.</small></small>\n\n<strong>Strong Tag</strong>\n\nΑυτή η ετικέτα δείχνει <strong> έντονο bold<strong> κείμενο text.</strong></strong>\n\n<strong>Subscript Tag</strong>\n\nGetting our science styling on with H<sub>2 δύο</sub>O, which should push the \"2\" down.\n\n<strong>Superscript Tag</strong>\n\nStill sticking with science and Albert Einstein's E = MC<sup>2 δύο</sup>, which should lift the 2 up.\n\n<strong>Teletype Tag </strong>(<em>obsolete in HTML5</em>)\n\nΑυτή η ετικέτα δείχνει <tt>τυλετυπος teletype κείμενο</tt>, which is usually styled like the <code>&lt;κώδικα code&gt;</code> tag.\n\n<strong>Underline Tag</strong> <em>deprecated in HTML 4, re-introduced in HTML5 with other semantics</em>\n\nΑυτή η ετικέτα δείχνει <u>υπογράμμιση underlined text</u>.\n\n<strong>Variable Tag</strong>\n\nΑυτή η ετικέτα δείχνει <var>παράμετροι variables</var>.]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1809</wp:post_id>\n\t\t<wp:post_date><![CDATA[2020-02-14 13:31:00]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2020-02-14 10:31:00]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[greek]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>0</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[default]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Επίπεδο 2 -Second Greek level]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=1811</link>\n\t\t<pubDate>Fri, 14 Feb 2020 10:31:47 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=1811</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[Σελίδα 2ου επιπέδου - Second level page\n]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1811</wp:post_id>\n\t\t<wp:post_date><![CDATA[2020-02-14 13:31:47]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2020-02-14 10:31:47]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-2]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1809</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[default]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t\t<item>\n\t\t<title><![CDATA[Επίπεδο 3]]></title>\n\t\t<link>https://playground.wordpress.net//?page_id=1813</link>\n\t\t<pubDate>Fri, 14 Feb 2020 10:32:50 +0000</pubDate>\n\t\t<dc:creator><![CDATA[admin]]></dc:creator>\n\t\t<guid isPermaLink=\"false\">https://wpthemetestdata.wordpress.com/?page_id=1813</guid>\n\t\t<description></description>\n\t\t<content:encoded><![CDATA[]]></content:encoded>\n\t\t<excerpt:encoded><![CDATA[]]></excerpt:encoded>\n\t\t<wp:post_id>1813</wp:post_id>\n\t\t<wp:post_date><![CDATA[2020-02-14 13:32:50]]></wp:post_date>\n\t\t<wp:post_date_gmt><![CDATA[2020-02-14 10:32:50]]></wp:post_date_gmt>\n\t\t<wp:post_modified><![CDATA[2023-12-15 21:06:55]]></wp:post_modified>\n\t\t<wp:post_modified_gmt><![CDATA[2023-12-15 21:06:55]]></wp:post_modified_gmt>\n\t\t<wp:comment_status><![CDATA[closed]]></wp:comment_status>\n\t\t<wp:ping_status><![CDATA[closed]]></wp:ping_status>\n\t\t<wp:post_name><![CDATA[%ce%b5%cf%80%ce%af%cf%80%ce%b5%ce%b4%ce%bf-3]]></wp:post_name>\n\t\t<wp:status><![CDATA[publish]]></wp:status>\n\t\t<wp:post_parent>1811</wp:post_parent>\n\t\t<wp:menu_order>0</wp:menu_order>\n\t\t<wp:post_type><![CDATA[page]]></wp:post_type>\n\t\t<wp:post_password><![CDATA[]]></wp:post_password>\n\t\t<wp:is_sticky>0</wp:is_sticky>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[default]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t<wp:postmeta>\n\t\t<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>\n\t\t<wp:meta_value><![CDATA[1]]></wp:meta_value>\n\t\t</wp:postmeta>\n\t\t\t\t\t\t\t</item>\n\t\t\t\t</channel>\n</rss>\n"
  },
  {
    "path": ".wordpress-version-checker.json",
    "content": "{\n    \"readme\": \"readme.txt\",\n    \"channel\": \"rc\"\n}\n"
  },
  {
    "path": ".wp-env.json",
    "content": "{\n  \"plugins\": [\".\",\"./tests/test-plugins\"],\n  \"env\": {\n    \"tests\": {\n      \"mappings\": {\n        \"wp-cli.yml\": \"./tests/bin/wp-cli.yml\"\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Changelog\n\nAll notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/), and will adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n\n## [Unreleased] - TBD\n\n## [2.8.0] - 2026-05-15\n**Note that this release bumps the WordPress minimum version from 6.6 to 6.8.**\n\n### Added\n- 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)).\n\n### Fixed\n- 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)).\n\n### Changed\n- 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)).\n- 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)).\n- 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)).\n\n### Security\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n\n### Developer\n- Add Patchstack security-reporting FAQ (props [@jeffpaul](https://github.com/jeffpaul) via [#257](https://github.com/10up/simple-page-ordering/pull/257)).\n\n## [2.7.4] - 2025-05-19\n**Note that this release bumps the WordPress minimum version from 6.5 to 6.6.**\n\n### Changed\n- 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)).\n- 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)).\n\n### Security\n- 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)).\n- 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)).\n\n### Developer\n- Adjust `makepot` to only happen during deploy instead of during every build (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#241](https://github.com/10up/simple-page-ordering/pull/241)).\n- Update all third-party actions our workflows rely on to use versions based on specific commit hashes (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#235](https://github.com/10up/simple-page-ordering/pull/235)).\n\n## [2.7.3] - 2025-03-11\n**Note that this release bumps the WordPress minimum version from 6.4 to 6.5.**\n\n### Changed\n- 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)).\n- 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)).\n\n### Security\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n\n### Developer\n- Update the README file to include a banner image and update badges shown (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#225](https://github.com/10up/simple-page-ordering/pull/225), [#227](https://github.com/10up/simple-page-ordering/pull/227)).\n\n## [2.7.2] - 2024-08-21\n**Note that this release bumps the WordPress minimum version from 6.3 to 6.4.**\n\n### Changed\n- 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)).\n- 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)).\n\n### Fixed\n- 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)).\n\n### Security\n- 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)).\n- 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)).\n\n### Developer\n- Update the `importFile` step to be `importWxr` in our `blueprint.json` config (props [@ernilambar](https://github.com/ernilambar), [@dkotter](https://github.com/dkotter) via [#210](https://github.com/10up/simple-page-ordering/pull/210)).\n- Update repo badges, add WordPress Playground badge (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#221](https://github.com/10up/simple-page-ordering/pull/221)).\n\n## [2.7.1] - 2024-06-03\n### Added\n- 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)).\n- 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)).\n\n### Changed\n- 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)).\n- 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)).\n\n### Fixed\n- 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)).\n\n## [2.7.0] - 2024-04-03\n### Added\n- 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)).\n- 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)).\n\n### Changed\n- 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)).\n- 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)).\n- Updated CODEOWNERS (props [@jeffpaul](https://github.com/jeffpaul), [@dkotter](https://github.com/dkotter) via [#186](https://github.com/10up/simple-page-ordering/pull/186)).\n- 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)).\n- 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)).\n- 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)).\n\n### Security\n- 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)).\n- 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)).\n- 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)).\n\n## [2.6.3] - 2023-11-09\n### Fixed\n- 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))\n\n## [2.6.2] - 2023-11-09\n### Changed\n- 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)).\n\n## [2.6.1] - 2023-11-08\n### Changed\n- 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)).\n- 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)).\n\n### Security\n- 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)).\n\n## [2.6.0] - 2023-10-25\n### Added\n- 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)).\n- 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)).\n- 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)).\n\n### Changed\n- Bump WordPress \"tested up to\" version 6.3 (props [@jeffpaul](https://github.com/jeffpaul), [@QAharshalkadu](https://github.com/QAharshalkadu) via [#156](https://github.com/10up/simple-page-ordering/pull/156)).\n- 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)).\n- 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)).\n- 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)).\n\n### Fixed\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n\n### Security\n- 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)).\n- 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)).\n- 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)).\n- 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)).\n\n## [2.5.1] - 2023-05-16\n### Security\n- 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)).\n\n## [2.5.0] - 2023-04-18\n**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.**\n\n### Added\n- 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).\n- 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).\n\n### Changed\n- 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).\n- 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).\n- 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)).\n- 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).\n\n### Fixed\n- 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).\n\n### Security\n- 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).\n- 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).\n- 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)).\n- 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).\n\n## [2.4.4] - 2023-01-10\n### Changed\n- 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)).\n- 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)).\n- 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)).\n\n### Security\n- 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)).\n- 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)).\n\n## [2.4.3] - 2022-11-08\n### Changed\n- Allow hierarchical post types that don't have `page-attributes` set to be sorted properly (props [@dkotter](https://github.com/dkotter), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#108](https://github.com/10up/simple-page-ordering/pull/108)).\n\n### Security\n- Bump `got` from 10.7.0 to 11.8.5 (props [@dependabot](https://github.com/apps/dependabot) via [#106](https://github.com/10up/simple-page-ordering/pull/106)).\n- Bump `@wordpress/env` from 4.9.0 to 5.3.0 (props [@dependabot](https://github.com/apps/dependabot) via [#106](https://github.com/10up/simple-page-ordering/pull/106)).\n- Bump `scss-tokenizer` from 0.3.0 to 0.4.3 (props [@dependabot](https://github.com/apps/dependabot) via [#107](https://github.com/10up/simple-page-ordering/pull/107)).\n- Bump `node-sass` from 7.0.1 to 7.0.3 (props [@dependabot](https://github.com/apps/dependabot) via [#107](https://github.com/10up/simple-page-ordering/pull/107)).\n\n## [2.4.2] - 2022-09-28\n### Changed\n- Replaced our Grunt build process with `10up-toolkit` (props [@cadic](https://github.com/cadic), [@peterwilsoncc](https://github.com/peterwilsoncc), [@dinhtungdu](https://github.com/dinhtungdu) via [#97](https://github.com/10up/simple-page-ordering/pull/97)).\n\n### Fixed\n- Disable reordering for CPTs that don't support `page-attributes` (props [@dhanendran](https://github.com/dhanendran), [@dinhtungdu](https://github.com/dinhtungdu), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#103](https://github.com/10up/simple-page-ordering/pull/103)).\n\n## [2.4.1] - 2022-06-21\n### Added\n- Missing text domain to strings (props [@kebbet](https://github.com/kebbet), [@dkotter](https://github.com/dkotter), [@jeffpaul](https://github.com/jeffpaul) via [#92](https://github.com/10up/simple-page-ordering/pull/92)).\n\n### Fixed\n- Condition in REST page sorting logic in `rest_page_ordering` method (props [@szepeviktor](https://github.com/szepeviktor), [@iamdharmesh](https://github.com/iamdharmesh) via [#94](https://github.com/10up/simple-page-ordering/pull/94)).\n- PHP Coding standards (props [@szepeviktor](https://github.com/szepeviktor), [@dinhtungdu](https://github.com/dinhtungdu) via [#93](https://github.com/10up/simple-page-ordering/pull/93)).\n\n### Changed\n- Bump WordPress \"tested up to\" version to 6.0 (props [@peterwilsoncc](https://github.com/peterwilsoncc), [@vikrampm1](https://github.com/vikrampm1), [@Sidsector9](https://github.com/Sidsector9), [@jeffpaul](https://github.com/jeffpaul) via [#95](https://github.com/10up/simple-page-ordering/pull/95), [#98](https://github.com/10up/simple-page-ordering/pull/98)).\n\n### Security\n- Bump `grunt` from 1.5.2 to 1.5.3 (props [@dependabot](https://github.com/apps/dependabot) via [#99](https://github.com/10up/simple-page-ordering/pull/99)).\n\n## [2.4.0] - 2022-04-28\n### Added\n- REST API for reordering posts: `/wp-json/simplepageordering/v1/page_ordering/` (props [@rmccue](https://github.com/rmccue), [@ciprianimike](https://github.com/ciprianimike), [@cadic](https://github.com/cadic), [@lkraav](https://github.com/lkraav), [@dinhtungdu](https://github.com/dinhtungdu) via [#74](https://github.com/10up/simple-page-ordering/pull/74)).\n- [REST Endpoint Documentation](https://github.com/10up/simple-page-ordering/blob/develop/README.md).\n- Documentation to exclude post types (props [@dzulfriday](https://profiles.wordpress.org/dzulfriday/) [@dinhtungdu](https://github.com/dinhtungdu), [@jeffpaul](https://github.com/jeffpaul) via [#60](https://github.com/10up/simple-page-ordering/pull/60)).\n- PHP8 compatibility testing GitHub Action (props [@Sidsector9](https://profiles.wordpress.org/Sidsector9/), [@iamdharmesh](https://github.com/iamdharmesh) via [#84](https://github.com/10up/simple-page-ordering/pull/84)).\n- Cypress E2E tests (props [@dinhtungdu](https://github.com/dinhtungdu), [@iamdharmesh](https://github.com/iamdharmesh), [@faisal-alvi](https://github.com/faisal-alvi) via [#82](https://github.com/10up/simple-page-ordering/pull/82)).\n- Dependency security scanning GiHhub Action (props [@jeffpaul](https://github.com/jeffpaul), [Sidsector9](https://profiles.wordpress.org/Sidsector9/) via [#86](https://github.com/10up/simple-page-ordering/pull/86)).\n\n### Changed\n- `PLUGIN_VERSION` to `SIMPLE_PAGE_ORDERING_VERSION` (props [@dinhtungdu](https://github.com/dinhtungdu), [@dkotter](https://github.com/dkotter) via [#81](https://github.com/10up/simple-page-ordering/pull/81)).\n- Bump WordPress \"tested up to\" version to 5.9 (props [@ankitguptaindia](https://github.com/ankitguptaindia), [@phpbits](https://github.com/phpbits), [@sudip-10up](https://github.com/sudip-10up) via [#69](https://github.com/10up/simple-page-ordering/pull/69), [#72](https://github.com/10up/simple-page-ordering/pull/72), [#76](https://github.com/10up/simple-page-ordering/pull/76)).\n\n### Security\n- Bump `rmccue/requests` from 1.7.0 to 1.8.0 (props [@dependabot](https://github.com/apps/dependabot) via [#70](https://github.com/10up/simple-page-ordering/pull/70)).\n- Bump `async` from 2.6.3 to 2.6.4 (props [@dependabot](https://github.com/apps/dependabot) via [#87](https://github.com/10up/simple-page-ordering/pull/87)).\n\n## [2.3.4] - 2020-04-07\n### Added\n- Acceptance testing using [WP Acceptance](https://github.com/10up/wpacceptance/) (props [@dinhtungdu](https://github.com/dinhtungdu) via [#42](https://github.com/10up/simple-page-ordering/pull/42)).\n\n### Changed\n- Avoid failed reordering introduced in v2.3.3 when handling a large number of non-hierarchical items (props [@dinhtungdu](https://github.com/dinhtungdu) via [#51](https://github.com/10up/simple-page-ordering/pull/51)).\n- Bump WordPress version support to 5.4 (props [@tmoorewp](https://github.com/tmoorewp) via [#50](https://github.com/10up/simple-page-ordering/pull/50)).\n\n### Fixed\n- Ensure titles of reordered items appear in a human-readable way (props [@dinhtungdu](https://github.com/dinhtungdu) via [#53](https://github.com/10up/simple-page-ordering/pull/53)).\n\n## [2.3.3] - 2020-03-04\n### Added\n- Nonce verify for AJAX requests (props [@pattonwebz](https://github.com/pattonwebz), [@dtbaker](https://github.com/dtbaker) via [#23](https://github.com/10up/simple-page-ordering/pull/23)).\n\n### Changed\n- Disable Post Revisions now using the correct action of `post_updated` (props [@jakejackson1](https://github.com/jakejackson1) via [#26](https://github.com/10up/simple-page-ordering/pull/26)).\n- Bump WordPress version \"tested up to\" 5.3 (props [@adamsilverstein](https://github.com/adamsilverstein), [@dinhtungdu](https://github.com/dinhtungdu) via [#30](https://github.com/10up/simple-page-ordering/pull/30), [#36](https://github.com/10up/simple-page-ordering/pull/36)).\n- Documentation updates (props [@jeffpaul](https://github.com/jeffpaul) via [#31](https://github.com/10up/simple-page-ordering/pull/31), [#33](https://github.com/10up/simple-page-ordering/pull/33)).\n\n### Fixed\n- Mismatched localized data variable name (props [@dinhtungdu](https://github.com/dinhtungdu) via [#36](https://github.com/10up/simple-page-ordering/pull/36)).\n- VIP Go coding standards (props [@asharirfan](https://github.com/asharirfan), [@dinhtungdu](https://github.com/dinhtungdu), [@pereirinha](https://github.com/pereirinha), [@brentvr](https://github.com/brentvr) via [#38](https://github.com/10up/simple-page-ordering/pull/38)).\n\n## [2.3.2] - 2018-05-08\n### Added\n- Allow cancellation of drag operation by pressing escape key.\n\n### Fixed\n- Allow form input elements added to a row by plugins to be interacted with.\n\n## [2.3.1] - 2018-04-13\n### Fixed\n- Prevent rows with hidden columns from jumping around while dragging.\n\n## [2.3.0] - 2018-03-05\n### Added\n- Use WordPress core's spinner class.\n- Grunt-based build process with Sass.\n\n### Changed\n- Use `WP_Query` instead of `get_posts()` for better performance.\n- Remove bundled translations in favor of WordPress.org language packs.\n\n### Fixed\n- Avoid exceeding PHP's max input variables, which could cause incorrectly assigned page order.\n- Malformed URL that would take you to posts instead of pages.\n- PHPDoc and coding standards to align with 10up's Engineering Best Practices.\n\n## [2.2.4] - 2015-02-08\n### Fixed\n- Redundant URL encoding when sorting in admin page list.\n\n## [2.2.3] - 2014-09-27\n### Fixed\n- Ordering in WordPress 4.0 following core changes to `ORDER BY` in `WP_Query`.\n\n## [2.2.2] - 2014-08-19\n### Added\n- German localization (props [@glueckpress](https://github.com/glueckpress)).\n\n### Fixed\n- Column widths no longer change when dragging a row (partial props [@thomasgriffin](https://github.com/thomasgriffin)).\n\n### Security\n- Closed obscure XSS vulnerability related to Sort by Order link (props [@SimonWaters](https://github.com/SimonWaters)).\n\n## [2.2.1] - 2014-05-31\n### Added\n- Brazilian translation (props to \"felds\").\n\n### Fixed\n- Bring back translations / text domain (yikes!).\n\n## [2.2.0] - 2014-04-06\n### Changed\n- Look and feel to better match WordPress 3.8 admin redesign.\n- Improved awareness of and compatibility with Quick Edit (inline editor).\n\n### Fixed\n- Prevent collisions with themes and plugins bundling Simple Page Ordering.\n\n## [2.1.2] - 2013-05-30\n### Fixed\n- Extreme edge case where post columns did not include the post title now supported.\n\n## [2.1.1] - 2013-05-27\n### Fixed\n- Custom post types with page-attributes or hierarchical properties, but not both, breaking ordering.\n\n## [2.1.0] - 2013-05-19\n### Added\n- Awareness of custom user capabilities for post types, in addition to a filter (`simple_page_ordering_edit_rights`) for overriding reordering rights (previously used `edit_others_pages` globally).\n- Awareness of custom post statuses (so they are not skipped during backend ordering operation).\n\n### Changed\n- UI refinements: Better \"spinner\" positioning (and HiDPI), translucent row when.moving, improved appearance of \"drop\" placeholder, wait till row dragged by at least 5px to start sorting.\n- Major JavaScript refactoring and simplification (combined with new stylesheet) for better performance.\n\n## [2.0.0] - 2012-11-12\n### Added\n- Drag pages into any part of the page hierarchy! No longer limited to same branch of tree!\n- Big performance improvements under the hood: leaner queries, batched requests, less processing.\n- New filters and hooks to extend / override default functionality.\n\n### Changed\n- Scales much more reliably in situations with very high page counts due to batching of requests.\n- Order of the first page is now set to \"1\" instead of \"0\", so pages added after ordering are added at the top (instead of second).\n- Removed \"number of pages\" drop down, which is repetitive of a field accessible under Screen Options.\n- Improved compatibility with newer versions of WordPress.\n\n## [1.0.0] - 2011-07-04\n### Added\n- Support for ordering non-hierarchical post types that have \"page-attributes\" support.\n- New filter link for \"Sort by Order\" to restore (hierarchical) or set (non-hierarchical, page attributes support) post list sort to menu order.\n\n### Changed\n- Users are now forced to wait for current sort operation to finish before they can sort another item.\n- Smarter about \"not sortable\" view states.\n- Localization ready! Rough Spanish translation included.\n- Assorted other performance and code improvements.\n\n### Fixed\n- Unexpected page ordering results when pages have not been explictly ordered yet (sorts by menu_order, then title, not just menu_order).\n- \"Per page\" drop down filter selection not saving between page loads (was broken in 3.1).\n- Items are always ordered with positive integers (potential negative sort orders had some performance benefits in last version, but sometimes caused issues).\n\n## [0.9.6] - 2011-04-04\n### Fixed\n- Broken inline editing (quick edit) fields in Firefox.\n\n## [0.9.5] - 2011-03-27\n### Changed\n- Smarter awareness of \"sorted\" modes in WordPress 3.1 (can only use when sorted by menu order).\n- Smarter awareness of \"quick edit\" mode (can't drag).\n- Generally simplified / better organized code.\n\n## [0.9.0] - 2010-12-29\n### Added\n- Further directions in the plug-in description (some users were confused about how to use it).\n- Basic compatibility with 3.1 RC (prevent clashes with post list sorting).\n\n### Changed\n- \"Move\" cursor only set if JavaScript enabled.\n\n### Fixed\n- Page count display always showing \"0\" on non-hierarchical post types (Showing 1-X of X).\n- Hidden menu order not updating after sort (causing Quick Edit to reset order when used right after sorting).\n\n## [0.8.4] - 2010-08-24\n### Changed\n- Loosened constraints on drag and drop to ease dropping into top and bottom position.\n- Improved some terminology (with custom post types in mind).\n\n### Fixed\n- Row background staying \"white\" after dropping into a new position.\n- Double border on the bottom of the row while dragging.\n\n## [0.8.2] - 2010-08-21\n### Changed\n- Simplified code - consolidated hooks.\n- Updated version requirements.\n\n[Unreleased]: https://github.com/10up/simple-page-ordering/compare/trunk...develop\n[2.8.0]: https://github.com/10up/simple-page-ordering/compare/2.7.4...2.8.0\n[2.7.4]: https://github.com/10up/simple-page-ordering/compare/2.7.3...2.7.4\n[2.7.3]: https://github.com/10up/simple-page-ordering/compare/2.7.2...2.7.3\n[2.7.2]: https://github.com/10up/simple-page-ordering/compare/2.7.1...2.7.2\n[2.7.1]: https://github.com/10up/simple-page-ordering/compare/2.7.0...2.7.1\n[2.7.0]: https://github.com/10up/simple-page-ordering/compare/2.6.3...2.7.0\n[2.6.3]: https://github.com/10up/simple-page-ordering/compare/2.6.2...2.6.3\n[2.6.2]: https://github.com/10up/simple-page-ordering/compare/2.6.1...2.6.2\n[2.6.1]: https://github.com/10up/simple-page-ordering/compare/2.6.0...2.6.1\n[2.6.0]: https://github.com/10up/simple-page-ordering/compare/2.5.1...2.6.0\n[2.5.1]: https://github.com/10up/simple-page-ordering/compare/2.5.0...2.5.1\n[2.5.0]: https://github.com/10up/simple-page-ordering/compare/2.4.4...2.5.0\n[2.4.4]: https://github.com/10up/simple-page-ordering/compare/2.4.3...2.4.4\n[2.4.3]: https://github.com/10up/simple-page-ordering/compare/2.4.2...2.4.3\n[2.4.2]: https://github.com/10up/simple-page-ordering/compare/2.4.1...2.4.2\n[2.4.1]: https://github.com/10up/simple-page-ordering/compare/2.4.0...2.4.1\n[2.4.0]: https://github.com/10up/simple-page-ordering/compare/2.3.4...2.4.0\n[2.3.4]: https://github.com/10up/simple-page-ordering/compare/2.3.3...2.3.4\n[2.3.3]: https://github.com/10up/simple-page-ordering/compare/2.3.2...2.3.3\n[2.3.2]: https://github.com/10up/simple-page-ordering/compare/2.3.1...2.3.2\n[2.3.1]: https://github.com/10up/simple-page-ordering/compare/2.3...2.3.1\n[2.3.0]: https://github.com/10up/simple-page-ordering/compare/2.2.4...2.3\n[2.2.4]: https://github.com/10up/simple-page-ordering/releases/tag/2.2.4\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at opensource@10up.com. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see\nhttps://www.contributor-covenant.org/faq\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing and Maintaining\n\nFirst, thank you for taking the time to contribute!\n\nThe following is a set of guidelines for contributors as well as information and instructions around our maintenance process. The two are closely tied together in terms of how we all work together and set expectations, so while you may not need to know everything in here to submit an issue or pull request, it's best to keep them in the same document.\n\n## Ways to contribute\n\nContributing isn't just writing code - it's anything that improves the project. All contributions for Simple Page Ordering are managed right here on GitHub. Here are some ways you can help:\n\n### Reporting bugs\n\nIf you're running into an issue with the plugin, please take a look through [existing issues](https://github.com/10up/simple-page-ordering/issues) and [open a new one](https://github.com/10up/simple-page-ordering/issues/new) if needed. If you're able, include steps to reproduce, environment information, and screenshots/screencasts as relevant.\n\n### Suggesting enhancements\n\nNew features and enhancements are also managed via [issues](https://github.com/10up/simple-page-ordering/issues). As project owners, 10up sets the [direction and roadmap](#roadmap) and may not prioritize or decide to implement if outside of the main goals of the plugin. Simple Page Ordering is considered a feature-complete plugin and thus there are no plans for significant enhancements or features at this time.\n\n### Pull requests\n\nPull requests represent a proposed solution to a specified problem. They should always reference an issue that describes the problem and contains discussion about the problem itself. Discussion on pull requests should be limited to the pull request itself, i.e. code review.\n\nFor more on how 10up writes and manages code, check out our [10up Engineering Best Practices](https://10up.github.io/Engineering-Best-Practices/).\n\n### Testing\n\nHelping to test an open source project and provide feedback on success or failure of those tests is also a helpful contribution.  You can find details on the Critical Flows and Test Cases in [this project's GitHub Wiki](https://github.com/10up/simple-page-ordering/wiki) as well as details on our overall approach to [Critical Flows and Test Cases in our Open Source Best Practices](https://10up.github.io/Open-Source-Best-Practices/testing/#critial-flows).  Submitting the results of testing via our Critical Flows as a comment on a Pull Request of a specific feature or as an Issue when testing the entire project is the best approach for providing testing results.\n\n## Maintenance process\n\n### Triage\n\nIssues and WordPress.org forum posts should be reviewed weekly and triaged as necessary. Not all tasks have to be done at once or by the same person. Triage tasks include:\n\n* Responding to new WordPress.org forum posts and GitHub issues/PRs with an acknolwedgment and following up on existing open/unresolved items that have had movement in the previous week.\n* Marking forum posts as resolved when corresponding issues are fixed or as not a support issue if not relevant.\n* Creating GitHub issues for WordPress.org forum posts as necessary or linking to them from existing related issues.\n* Applying labels and milestones to GitHub issues.\n\n#### Issue labels\n\nAll issues should be labeled as bugs (`type:bug`), enhancements/feature requests (`type:enhancement`), or questions/support (`type:question`). Each issue should only be of one \"type\". Issues with associated pull requests should be labeled `has:pr`.\n\nBugs and enhancements that are closed without a related change should be labeled as `declined`, `duplicate`, or `invalid`. Invalid issues would be where a problem is not reproducible or opened in the wrong repo and should be relatively uncommon. These labels are all prefixed with `closed:`.\n\nThere are two other labels that are GitHub defaults with more global meaning we've kept: `good first issue` and `help wanted`.\n\n#### Project boards\n\nA simple [triage board](https://github.com/10up/simple-page-ordering/projects/1) has been set up and is used to track what needs to be done next for each issue and PR.\n\n### Review against WordPress updates\n\nDuring weekly triage, the tested up to version should be compared against the latest version of WordPress. If there's a newer version of WordPress, the plugin should be re-tested using any automated tests as well as any manual tests indicated below, and the tested up to version bumped and committed to both GitHub and the WordPress.org repository.\n\n### Release cycle\n\nNew releases are targeted based on number and severity of changes along with human availability. When a release is targeted, a due date will be assigned to the appropriate milestone.\n\n### Roadmap\n\nSimple Page Ordering is considered a feature-complete plugin, with a handful of potential enhancements captured as [issues](https://github.com/10up/simple-page-ordering/issues). Of note are the ability to cancel a dragging operation and explorations of how to further mitigate time-out issues when reordering many pages. These do not currently have a targeted release date.\n\n### Testing\n\nHead to the Pages list table and drag and drop pages to change the order. Refresh to ensure that changes have \"stuck\". A limited amount of hierarchical functionality is available - if you drop an item before a child page it will assume that child page's level of hierarchy. If you drag it out of the tree, it will become a top-level item.\n\n### Release instructions\n\n1. Branch: Starting from `develop`, cut a release branch named `release/X.Y.Z` for your changes.\n2. Version bump: Bump the version number in `package.json`, `package-lock.json`, `readme.txt`, and `simple-page-ordering.php` if it does not already reflect the version being released. In `class-simple-page-ordering.php` update the plugin `SIMPLE_PAGE_ORDERING_VERSION` constant.\n3. Changelog: Add/update the changelog in `readme.txt` and `CHANGELOG.md`.\n4. Props: update `CREDITS.md` file with any new contributors, confirm maintainers are accurate.\n5. New files: Check to be sure any new files/paths that are unnecessary in the production version are included in `.distignore`.\n6. Readme updates: Make any other readme changes as necessary. `README.md` is geared toward GitHub and `readme.txt` contains WordPress.org-specific content. The two are slightly different.\n7. Merge: Make a non-fast-forward merge from your release branch to `develop` (or merge the pull request), then do the same for `develop` into `trunk`, ensuring you pull the most recent changes into `develop` first (`git checkout develop && git pull origin develop && git checkout trunk && git merge --no-ff develop`).  `trunk` contains the stable development version.\n8. Push: Push your `trunk` branch to GitHub (e.g. `git push origin trunk`).\n9. [Compare](https://github.com/10up/simple-page-ordering/compare/trunk...develop) `trunk` to `develop` to ensure no additional changes were missed.\n10. Test the pre-release ZIP locally by [downloading](https://github.com/10up/simple-page-ordering/actions/workflows/build-release-zip.yml) it from the Build release zip action artifact and installing it locally. Ensure this zip has all the files we expect, that it installs and activates correctly and that all basic functionality is working.\n11. Either perform a regression testing utilizing the available [Critical Flows](https://10up.github.io/Open-Source-Best-Practices/testing/#critical-flows) and Test Cases or if [end-to-end tests](https://10up.github.io/Open-Source-Best-Practices/testing/#e2e-testing) cover a significant portion of those Critical Flows then run e2e tests.  Only proceed if everything tests successfully.\n12. Release: Create a [new release](https://github.com/10up/simple-page-ordering/releases/new), naming the tag and the release with the new version number, and targeting the `trunk` branch. Paste the changelog from `CHANGELOG.md` into the body of the release and include a link to the closed issues on the [X.Y.Z milestone](https://github.com/10up/simple-page-ordering/milestone/#?closed=1).  The release should now appear under [releases](https://github.com/10up/simple-page-ordering/releases) and in the WordPress admin as an update as well.\n13. SVN: Wait for the [GitHub Action](https://github.com/10up/simple-page-ordering/actions) to finish deploying to the WordPress.org repository. If all goes well, users with SVN commit access for that plugin will receive an emailed diff of changes.\n14. Check WordPress.org: Ensure that the changes are live on https://wordpress.org/plugins/simple-page-ordering/. This may take a few minutes.\n15. Close milestone: Edit the [X.Y.Z milestone](https://github.com/10up/simple-page-ordering/milestone/#) with release date (in the `Due date (optional)` field) and link to GitHub release (in the `Description field`), then close the milestone.\n16. Punt incomplete items: If any open issues or PRs which were milestoned for `X.Y.Z` do not make it into the release, update their milestone to `X.Y.Z+1`, `X.Y+1.0`, `X+1.0.0` or `Future Release`.\n"
  },
  {
    "path": "CREDITS.md",
    "content": "The following acknowledges the Maintainers for this repository, those who have Contributed to this repository (via bug reports, code, design, ideas, project management, translation, testing, etc.), and any Libraries utilized.\n\n## Maintainers\n\nThe following individuals are responsible for curating the list of issues, responding to pull requests, and ensuring regular releases happen.\n\n[Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul).\n\n## Contributors\n\nThank you to all the people who have already contributed to this repository via bug reports, code, design, ideas, project management, translation, testing, etc.\n\n[10up (@10up)](https://github.com/10up), [Jake Goldman (@jakemgold)](https://github.com/jakemgold), [Ryan Welcher (@ryanwelcher)](https://github.com/ryanwelcher), [Helen Hou-Sandí (@helen)](https://github.com/helen), [Oomph, Inc. (@oomphinc)](https://github.com/oomphinc), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [Oscar Sanchez S. (@oscarssanchez)](https://github.com/oscarssanchez), [Ashar Irfan (@asharirfan)](https://github.com/asharirfan), [William Patton (@pattonwebz)](https://github.com/pattonwebz), [Ben Huson (@benhuson)](https://github.com/benhuson), [Jake Jackson (@jakejackson1)](https://github.com/jakejackson1), [Darin Kotter (@dkotter)](https://github.com/dkotter), [Tung Du (@dinhtungdu)](https://github.com/dinhtungdu), [@dtbaker](https://github.com/dtbaker), [Adam Silverstein (@adamsilverstein)](https://github.com/adamsilverstein), [Marco Pereirinha (@pereirinha)](https://github.com/pereirinha), [Brent van Rensburg (@brentvr)](https://github.com/brentvr), [Caspar Hübinger (@glueckpress)](https://github.com/glueckpress), [Thomas Griffin (@thomasgriffin)](https://github.com/thomasgriffin), [Simon Waters (@SimonWaters)](https://github.com/SimonWaters), [Dion Hulse (@dd32)](https://github.com/dd32), [Tim Moore (@tmoorewp)](https://github.com/tmoorewp), [Jeffrey Carandang (@phpbits)](https://github.com/phpbits), [Michele Cipriani (@ciprianimike)](https://github.com/ciprianimike), [Sudip Dadhaniya (@sudip-10up)](https://github.com/sudip-10up), [Faisal Alvi (@faisal-alvi)](https://github.com/faisal-alvi), [Max Lyuchin (@cadic)](https://github.com/cadic), [Leho Kraav (@lkraav)](https://github.com/lkraav), [Dharmesh Patel (@iamdharmesh)](https://github.com/iamdharmesh), [Ankit Gupta (@ankitguptaindia)](https://github.com/ankitguptaindia), [(@dzulfriday)](https://profiles.wordpress.org/dzulfriday/), [Erik Betshammar (@kebbet)](https://github.com/kebbet), [Viktor Szépe (@szepeviktor)](https://github.com/szepeviktor), [Peter Wilson (@peterwilsoncc)](https://github.com/peterwilsoncc), [Vikram Moparthy (@vikrampm1)](https://github.com/vikrampm1), [Dhanendran Rajagopal (@dhanendran)](https://github.com/dhanendran), [Jayedul Kabir (@jayedul)](https://github.com/jayedul), [Dan Ruscoe (@ruscoe)](https://github.com/ruscoe), [Ravinder Kumar (@ravinderk)](https://github.com/ravinderk), [Konstantinos Galanakis (@kmgalanakis)](https://github.com/kmgalanakis), [Dependabot (@dependabot)](https://github.com/apps/dependabot), [Mika (@mikhail-net)](https://github.com/mikhail-net), [Taylor Lovett (@tlovett1)](https://github.com/tlovett1), [Ben Marshall (@bmarshall511)](https://github.com/bmarshall511), [Harshal Kadu (@QAharshalkadu)](https://github.com/QAharshalkadu), [Laurence Cope (@amityweb)](https://github.com/amityweb), [Shannon Fisher (@shannonmfisher)](https://github.com/shannonmfisher), [Peter Sorensen (@psorensen)](https://github.com/psorensen), [Alex Lion (@alexclassroom)](https://github.com/alexclassroom), [Sudip Dadhaniya (@sudip-md)](https://github.com/sudip-md), [Sissi (@sissibieber)](https://github.com/sissibieber), [Zach Gibb (@zachgibb)](https://github.com/zachgibb), [Martin Jäcke (@mjot)](https://github.com/mjot), [Tom (@xDehy)](https://github.com/xDehy), [Nilambar Sharma (@ernilambar)](https://github.com/ernilambar), [David Godleman (@godleman)](https://github.com/godleman), [Anton Vanyukov (@av3nger)](https://github.com/av3nger), [James Morrison (@jamesmorrison)](https://github.com/jamesmorrison), [Jasper (@jasperfrontend)](https://github.com/jasperfrontend), [Sumit Bagthariya (@qasumitbagthariya)](https://github.com/qasumitbagthariya), [Ryan McCue (@rmccue)](https://github.com/rmccue), [Sanket Parmar (@sanketio)](https://github.com/sanketio), [Siddharth Thevaril (@Sidsector9)](https://github.com/Sidsector9).\n\n## Libraries\n\nThe following software libraries are utilized in this repository.\n\nn/a.\n"
  },
  {
    "path": "LICENSE.md",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The licenses for most software are designed to take away your\nfreedom to share and change it.  By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users.  This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it.  (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.)  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n  To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have.  You must make sure that they, too, receive or can get the\nsource code.  And you must show them these terms so they know their\nrights.\n\n  We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n  Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware.  If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n  Finally, any free program is threatened constantly by software\npatents.  We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary.  To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                    GNU GENERAL PUBLIC LICENSE\n   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n  0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License.  The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage.  (Hereinafter, translation is included without limitation in\nthe term \"modification\".)  Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope.  The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n  1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n  2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n    a) You must cause the modified files to carry prominent notices\n    stating that you changed the files and the date of any change.\n\n    b) You must cause any work that you distribute or publish, that in\n    whole or in part contains or is derived from the Program or any\n    part thereof, to be licensed as a whole at no charge to all third\n    parties under the terms of this License.\n\n    c) If the modified program normally reads commands interactively\n    when run, you must cause it, when started running for such\n    interactive use in the most ordinary way, to print or display an\n    announcement including an appropriate copyright notice and a\n    notice that there is no warranty (or else, saying that you provide\n    a warranty) and that users may redistribute the program under\n    these conditions, and telling the user how to view a copy of this\n    License.  (Exception: if the Program itself is interactive but\n    does not normally print such an announcement, your work based on\n    the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole.  If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works.  But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n  3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n    a) Accompany it with the complete corresponding machine-readable\n    source code, which must be distributed under the terms of Sections\n    1 and 2 above on a medium customarily used for software interchange; or,\n\n    b) Accompany it with a written offer, valid for at least three\n    years, to give any third party, for a charge no more than your\n    cost of physically performing source distribution, a complete\n    machine-readable copy of the corresponding source code, to be\n    distributed under the terms of Sections 1 and 2 above on a medium\n    customarily used for software interchange; or,\n\n    c) Accompany it with the information you received as to the offer\n    to distribute corresponding source code.  (This alternative is\n    allowed only for noncommercial distribution and only if you\n    received the program in object code or executable form with such\n    an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it.  For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable.  However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n  4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License.  Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n  5. You are not required to accept this License, since you have not\nsigned it.  However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works.  These actions are\nprohibited by law if you do not accept this License.  Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n  6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions.  You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n  7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all.  For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices.  Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n  8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded.  In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n  9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number.  If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation.  If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n  10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission.  For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this.  Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n                            NO WARRANTY\n\n  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software; you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation; either version 2 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License along\n    with this program; if not, write to the Free Software Foundation, Inc.,\n    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n    Gnomovision version 69, Copyright (C) year name of author\n    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary.  Here is a sample; alter the names:\n\n  Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n  `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n  <signature of Ty Coon>, 1 April 1989\n  Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs.  If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.\n"
  },
  {
    "path": "README.md",
    "content": "# Simple Page Ordering\n\n![Simple Page Ordering](https://github.com/10up/simple-page-ordering/blob/develop/.wordpress-org/banner-1544x500.png)\n\n[![Support Level](https://img.shields.io/badge/support-stable-blue.svg)](#support-level) ![Required PHP Version](https://img.shields.io/wordpress/plugin/required-php/simple-page-ordering?label=Requires%20PHP) ![Required WP Version](https://img.shields.io/wordpress/plugin/wp-version/simple-page-ordering?label=Requires%20WordPress) ![WordPress tested up to version](https://img.shields.io/wordpress/plugin/tested/simple-page-ordering?label=WordPress) [![GPLv2 License](https://img.shields.io/github/license/10up/simple-page-ordering.svg)](https://github.com/10up/simple-page-ordering/blob/develop/LICENSE.md) [![Dependency Review](https://github.com/10up/simple-page-ordering/actions/workflows/dependency-review.yml/badge.svg)](https://github.com/10up/simple-page-ordering/actions/workflows/dependency-review.yml) [![E2E test](https://github.com/10up/simple-page-ordering/actions/workflows/cypress.yml/badge.svg)](https://github.com/10up/simple-page-ordering/actions/workflows/cypress.yml) [![PHP Compatibility](https://github.com/10up/simple-page-ordering/actions/workflows/php-compatibility.yml/badge.svg)](https://github.com/10up/simple-page-ordering/actions/workflows/php-compatibility.yml) [![PHPCS](https://github.com/10up/simple-page-ordering/actions/workflows/phpcs.yml/badge.svg)](https://github.com/10up/simple-page-ordering/actions/workflows/phpcs.yml) [![JS Lint](https://github.com/10up/simple-page-ordering/actions/workflows/jslint.yml/badge.svg)](https://github.com/10up/simple-page-ordering/actions/workflows/jslint.yml) [![CodeQL](https://github.com/10up/simple-page-ordering/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/10up/simple-page-ordering/actions/workflows/github-code-scanning/codeql) [![WordPress Playground Demo](https://img.shields.io/wordpress/plugin/v/simple-page-ordering?logo=wordpress&logoColor=FFFFFF&label=Playground%20Demo&labelColor=3858E9&color=3858E9)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/10up/simple-page-ordering/add/badges/.wordpress-org/blueprints/blueprint.json)\n\n> Order your pages and other hierarchical post types with simple drag and drop right from the standard page list.\n\n## Overview\n\nOrder your pages and other custom post types that support \"page-attributes\" with drag and drop right from the built in page list.\n\nDrag 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.\n\nThe plug-in is \"capabilities aware\" - only users with the ability to edit others' pages (editors and administrators) will be able to reorder content.\n\nIntegrated help is included: click the \"help\" tab at the top right of the screen.\n\nPlease note that the plug-in is not compatible with Internet Explorer 7 and earlier, due to limitations within those browsers.\n\nWant to help? Check out our [contributing guidelines](CONTRIBUTING.md) to get started.\n\n## Installation\n\n1. Install either via the WordPress.org plugin directory, or by uploading the files to your server.\n1. Activate the plugin through the 'Plugins' menu in WordPress.\n1. Get to work reordering your content!\n\n## Frequently Asked Questions\n\n### Why can't I reorder my posts?\n\nGeneric 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:\n\n`add_post_type_support( 'post', 'page-attributes' );`\n\n### Can I make my custom post type take advantage of this plug-in?\n\nYep. 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.\n\n`'supports' => array( 'title', 'editor', 'page-attributes' ),`\n\nAlternatively, when you register the post type, set `hierarchical` to `true` - hierarchical post types natively order by menu order.\n\nYou 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.\n\n### I want my non-hierarchical post type to be sortable. Help!\n\nSee the previous two answers - just add `page-attributes` to the list of supported post type features.\n\n### I reordered my posts, but the order didn't change on the front end of my site!\n\nThis plug-in doesn't change any *behavior* on the front end, it simply changes the menu order stored in WordPress.\n\nIf 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).\n\n### I reordered my content, it seemed to work, but when I refreshed, it went back to the old order!\n\nThis 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:\n\n`add_filter( 'simple_page_ordering_limit', function($number) { return 5; } );`\n\nWhere 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.\n\n### What happened to the drop down box that let me change the number of items on each page in the admin?\n\nThis 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.\n\n### How can I modify sortable post types?\n\nPost types can be included or excluded by using the `simple_page_ordering_is_sortable` filter.\n\nFor example, to exclude the `excluded_post_type` custom post type, add the following snippet in the theme function file or custom plugin:\n\n```\nadd_filter( 'simple_page_ordering_is_sortable', function( $sortable, $post_type ) {\n\tif ( 'excluded_post_type' === $post_type ) {\n\t\treturn false;\n\t}\n\treturn $sortable;\n}, 10, 2 );\n```\n\nTo include the `include_post_type` custom post type, add the following snippet in the theme function file or custom plugin:\n\n```\nadd_filter( 'simple_page_ordering_is_sortable', function( $sortable, $post_type ) {\n    if ( 'include_post_type' === $post_type ) {\n        return true;\n    }\n    return $sortable;\n}, 10, 2 );\n```\n\n### Can I use REST to order posts?\n\nYes. The plugin registers the REST endpoint `simple-page-ordering/v1/page_ordering`.\n\n#### Input parameters\n\n| Name    | Type    |Description                                                  | Mandatory |  Default value |\n|--------:|--------:|------------------------------------------------------------:|----------:|---------------:|\n| id      | integer | The ID of the post you are positioning                      | yes       |                |\n| previd  | integer | The ID of the post previous to the one you want to position | yes       |                |\n| nextid  | integer | The ID of the post next to the one you want to position     | yes       |                |\n| start   | integer | The start index                                             | no        | 1              |\n| exclude | array   | Array of post IDs to be excluded                            | no        | empty array    |\n\n#### Example request\n\n| Type    | URL                                                                                  |\n|--------:|-------------------------------------------------------------------------------------:|\n| post    | /wp-json/simple-page-ordering/v1/page_ordering/?id=2&previd=13&nextid=14&excluded=[] |\n\n### Where do I report security bugs found in this plugin?\n\nPlease 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.\n\n## Support Level\n\n**Stable:** 10up is not planning to develop any new features for this, but will still respond to bug reports and security concerns. We welcome PRs, but any that include new features should be small and easy to integrate and should not include breaking changes. We otherwise intend to keep this tested up to the most recent version of WordPress.\n\n## Changelog\n\nA complete listing of all notable changes to Simple Page Ordering are documented in [CHANGELOG.md](https://github.com/10up/simple-page-ordering/blob/develop/CHANGELOG.md).\n\n## Contributing\n\nPlease read [CODE_OF_CONDUCT.md](https://github.com/10up/simple-page-ordering/blob/develop/CODE_OF_CONDUCT.md) for details on our code of conduct, [CONTRIBUTING.md](https://github.com/10up/simple-page-ordering/blob/develop/CONTRIBUTING.md) for details on the process for submitting pull requests to us, and [CREDITS.md](https://github.com/10up/simple-page-ordering/blob/develop/CREDITS.md) for a listing of maintainers, contributors, and libraries for Simple Page Ordering.\n\n## Like what you see?\n\n<a href=\"http://10up.com/contact/\"><img src=\"https://github.com/10up/.github/blob/trunk/profile/10up-github-banner.jpg\" width=\"850\" alt=\"Work with the 10up WordPress Practice at Fueled\"></a>\n"
  },
  {
    "path": "assets/css/scss/simple-page-ordering.scss",
    "content": ".wp-list-table {\n\t.ui-sortable {\n\t\ttr {\n\t\t\tcursor: move;\n\t\t\t&.inline-editor {\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t}\n\t}\n\n\t.spo-updating {\n\t\ttr {\n\t\t\tcursor: default;\n\t\t}\n\t}\n\n\t.ui-sortable-placeholder {\n\t\toutline: 1px dashed #bbb;\n\t\tbackground: #F1F1F1;\n\t\tvisibility: visible !important;\n\t}\n\n\t.ui-sortable-helper {\n\t\tbackground-color: #fff;\n\t\toutline: 1px solid #e1e1e1;\n\t}\n}\n\n.spo-updating-row {\n\t.check-column {\n\t\tdisplay: table-cell; // reset from core .spinner\n\t\tfloat: none; // reset from core .spinner\n\t\tmargin: 0; // reset from core .spinner\n\t\tbackground-position: 9px 9px;\n\n\t\tinput {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "assets/js/src/simple-page-ordering.js",
    "content": "import '../../css/scss/simple-page-ordering.scss';\n\nimport { decodeEntities } from '@wordpress/html-entities';\n\n// eslint-disable-next-line import/no-unresolved\nimport 'jquery-ui-sortable';\n\nconst sortable_post_table = jQuery('.wp-list-table tbody');\nfunction update_simple_ordering_callback(response) {\n\tif (response === 'children') {\n\t\twindow.location.reload();\n\t\treturn;\n\t}\n\n\tconst changes = jQuery.parseJSON(response);\n\n\tconst { new_pos } = changes;\n\t// eslint-disable-next-line no-restricted-syntax\n\tfor (const key in new_pos) {\n\t\tif (key === 'next') {\n\t\t\t// eslint-disable-next-line no-continue\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst inline_key = document.getElementById(`inline_${key}`);\n\t\t// eslint-disable-next-line no-prototype-builtins\n\t\tif (inline_key !== null && new_pos.hasOwnProperty(key)) {\n\t\t\tconst dom_menu_order = inline_key.querySelector('.menu_order');\n\n\t\t\tif (undefined !== new_pos[key].menu_order) {\n\t\t\t\tif (dom_menu_order !== null) {\n\t\t\t\t\tdom_menu_order.textContent = new_pos[key].menu_order;\n\t\t\t\t}\n\n\t\t\t\tconst dom_post_parent = inline_key.querySelector('.post_parent');\n\t\t\t\tif (dom_post_parent !== null) {\n\t\t\t\t\tdom_post_parent.textContent = new_pos[key].post_parent;\n\t\t\t\t}\n\n\t\t\t\tlet post_title = null;\n\t\t\t\tconst dom_post_title = inline_key.querySelector('.post_title');\n\t\t\t\tif (dom_post_title !== null) {\n\t\t\t\t\tpost_title = dom_post_title.innerHTML;\n\n\t\t\t\t\t// Convert emoji img tags back to Unicode emoji characters\n\t\t\t\t\t// See: https://github.com/10up/simple-page-ordering/issues/205\n\t\t\t\t\tpost_title = post_title.replace(\n\t\t\t\t\t\t/<img[^>]*class=\"emoji\"[^>]*alt=\"([^\"]*)\"[^>]*>/g,\n\t\t\t\t\t\t'$1',\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tlet dashes = 0;\n\t\t\t\twhile (dashes < new_pos[key].depth) {\n\t\t\t\t\tpost_title = `&mdash; ${post_title}`;\n\t\t\t\t\tdashes++;\n\t\t\t\t}\n\t\t\t\tconst dom_row_title = inline_key.parentNode.querySelector('.row-title');\n\t\t\t\tif (dom_row_title !== null && post_title !== null) {\n\t\t\t\t\tdom_row_title.innerHTML = decodeEntities(post_title);\n\t\t\t\t}\n\t\t\t} else if (dom_menu_order !== null) {\n\t\t\t\tdom_menu_order.textContent = new_pos[key];\n\t\t\t}\n\t\t}\n\t}\n\n\tif (changes.next) {\n\t\tjQuery.post(\n\t\t\twindow.ajaxurl,\n\t\t\t{\n\t\t\t\taction: 'simple_page_ordering',\n\t\t\t\tid: changes.next.id,\n\t\t\t\tprevid: changes.next.previd,\n\t\t\t\tnextid: changes.next.nextid,\n\t\t\t\tstart: changes.next.start,\n\t\t\t\t_wpnonce: window.simple_page_ordering_localized_data._wpnonce,\n\t\t\t\texcluded: JSON.stringify(changes.next.excluded),\n\t\t\t},\n\t\t\tupdate_simple_ordering_callback,\n\t\t);\n\t} else {\n\t\tjQuery('.spo-updating-row')\n\t\t\t.removeClass('spo-updating-row')\n\t\t\t.find('.check-column')\n\t\t\t.removeClass('spinner is-active');\n\t\tsortable_post_table.removeClass('spo-updating').sortable('enable');\n\t}\n}\n\nsortable_post_table.sortable({\n\titems: '> tr',\n\tcursor: 'move',\n\taxis: 'y',\n\tcontainment: 'table.widefat',\n\tcancel: 'input, textarea, button, select, option, .inline-edit-row',\n\tdistance: 2,\n\topacity: 0.8,\n\ttolerance: 'pointer',\n\tcreate() {\n\t\tjQuery(document).keydown(function (e) {\n\t\t\tconst key = e.key || e.keyCode;\n\t\t\tif (key === 'Escape' || key === 'Esc' || key === 27) {\n\t\t\t\tsortable_post_table.sortable('option', 'preventUpdate', true);\n\t\t\t\tsortable_post_table.sortable('cancel');\n\t\t\t}\n\t\t});\n\t},\n\tstart(e, ui) {\n\t\tif (typeof inlineEditPost !== 'undefined') {\n\t\t\t// eslint-disable-next-line no-undef\n\t\t\tinlineEditPost.revert();\n\t\t}\n\t\tui.placeholder.height(ui.item.height());\n\t\tui.placeholder.empty();\n\t},\n\thelper(e, ui) {\n\t\tconst children = ui.children();\n\t\tfor (let i = 0; i < children.length; i++) {\n\t\t\tconst selector = jQuery(children[i]);\n\t\t\tselector.width(selector.width());\n\t\t}\n\t\treturn ui;\n\t},\n\tstop(e, ui) {\n\t\tif (sortable_post_table.sortable('option', 'preventUpdate')) {\n\t\t\tsortable_post_table.sortable('option', 'preventUpdate', false);\n\t\t}\n\n\t\t// remove fixed widths\n\t\tui.item.children().css('width', '');\n\t},\n\tupdate(e, ui) {\n\t\tif (sortable_post_table.sortable('option', 'preventUpdate')) {\n\t\t\tsortable_post_table.sortable('option', 'preventUpdate', false);\n\t\t\treturn;\n\t\t}\n\n\t\tsortable_post_table.sortable('disable').addClass('spo-updating');\n\t\tui.item.addClass('spo-updating-row');\n\t\tui.item.find('.check-column').addClass('spinner is-active');\n\n\t\tconst postid = ui.item[0].id.substr(5); // post id\n\n\t\tlet prevpostid = false;\n\t\tconst prevpost = ui.item.prev();\n\t\tif (prevpost.length > 0) {\n\t\t\tprevpostid = prevpost.attr('id').substr(5);\n\t\t}\n\n\t\tlet nextpostid = false;\n\t\tconst nextpost = ui.item.next();\n\t\tif (nextpost.length > 0) {\n\t\t\tnextpostid = nextpost.attr('id').substr(5);\n\t\t}\n\n\t\t// go do the sorting stuff via ajax\n\t\tjQuery.post(\n\t\t\twindow.ajaxurl,\n\t\t\t{\n\t\t\t\taction: 'simple_page_ordering',\n\t\t\t\tid: postid,\n\t\t\t\tprevid: prevpostid,\n\t\t\t\tnextid: nextpostid,\n\t\t\t\t_wpnonce: window.simple_page_ordering_localized_data._wpnonce,\n\t\t\t},\n\t\t\tupdate_simple_ordering_callback,\n\t\t);\n\n\t\t// fix cell colors\n\t\tconst table_rows = document.querySelectorAll('tr.iedit');\n\t\tlet table_row_count = table_rows.length;\n\t\twhile (table_row_count--) {\n\t\t\tif (table_row_count % 2 === 0) {\n\t\t\t\tjQuery(table_rows[table_row_count]).addClass('alternate');\n\t\t\t} else {\n\t\t\t\tjQuery(table_rows[table_row_count]).removeClass('alternate');\n\t\t\t}\n\t\t}\n\t},\n});\n\njQuery(function () {\n\t// set up click handler for order reset link\n\tjQuery('#simple-page-ordering-reset').on('click', function (e) {\n\t\te.preventDefault();\n\t\tconst post_type = jQuery(this).data('posttype');\n\t\tif (\n\t\t\t// eslint-disable-next-line no-alert\n\t\t\twindow.confirm(window.simple_page_ordering_localized_data.confirmation_msg)\n\t\t) {\n\t\t\tjQuery.post(\n\t\t\t\twindow.ajaxurl,\n\t\t\t\t{\n\t\t\t\t\taction: 'reset_simple_page_ordering',\n\t\t\t\t\tpost_type,\n\t\t\t\t\t_wpnonce: window.simple_page_ordering_localized_data._wpnonce,\n\t\t\t\t},\n\t\t\t\tfunction () {\n\t\t\t\t\twindow.location.reload();\n\t\t\t\t},\n\t\t\t);\n\t\t}\n\t});\n});\n"
  },
  {
    "path": "class-simple-page-ordering.php",
    "content": "<?php\n\nnamespace SimplePageOrdering;\n\nuse stdClass;\nuse WP_Error;\nuse WP_Post;\nuse WP_REST_Response;\nuse WP_Query;\n\nif ( ! defined( 'ABSPATH' ) ) {\n\texit;\n}\n\n// Useful global constants.\ndefine( 'SIMPLE_PAGE_ORDERING_VERSION', '2.8.0' );\n\nif ( ! class_exists( 'Simple_Page_Ordering' ) ) :\n\n\t/**\n\t * Simple_Page_Ordering class\n\t */\n\tclass Simple_Page_Ordering {\n\n\t\t/**\n\t\t * Handles initializing this class and returning the singleton instance after it's been cached.\n\t\t *\n\t\t * @return null|Simple_Page_Ordering\n\t\t */\n\t\tpublic static function get_instance() {\n\t\t\t// Store the instance locally to avoid private static replication\n\t\t\tstatic $instance = null;\n\n\t\t\tif ( null === $instance ) {\n\t\t\t\t$instance = new self();\n\t\t\t\tself::add_actions();\n\t\t\t}\n\n\t\t\treturn $instance;\n\t\t}\n\n\t\t/**\n\t\t * An empty constructor\n\t\t *\n\t\t * Purposely do nothing here\n\t\t */\n\t\tpublic function __construct() {}\n\n\t\t/**\n\t\t * Handles registering hooks that initialize this plugin.\n\t\t */\n\t\tpublic static function add_actions() {\n\t\t\tadd_action( 'load-edit.php', array( __CLASS__, 'load_edit_screen' ) );\n\t\t\tadd_action( 'wp_ajax_simple_page_ordering', array( __CLASS__, 'ajax_simple_page_ordering' ) );\n\t\t\tadd_action( 'wp_ajax_reset_simple_page_ordering', array( __CLASS__, 'ajax_reset_simple_page_ordering' ) );\n\t\t\tadd_action( 'rest_api_init', array( __CLASS__, 'rest_api_init' ) );\n\n\t\t\t// Custom edit page actions.\n\t\t\tadd_action( 'post_action_spo-move-under-grandparent', array( __CLASS__, 'handle_move_under_grandparent' ) );\n\t\t\tadd_action( 'post_action_spo-move-under-sibling', array( __CLASS__, 'handle_move_under_sibling' ) );\n\t\t}\n\n\t\t/**\n\t\t * Move a post in/up the post parent tree.\n\t\t *\n\t\t * This is a custom action on the edit page to modify the post parent\n\t\t * to be the child it's current grandparent post. If no grandparent\n\t\t * exists, the post becomes a top level page.\n\t\t *\n\t\t * @param int $post_id The post ID.\n\t\t */\n\t\tpublic static function handle_move_under_grandparent( $post_id ) {\n\t\t\t$post = get_post( $post_id );\n\t\t\tif ( ! $post ) {\n\t\t\t\tself::redirect_to_referer();\n\t\t\t}\n\n\t\t\tcheck_admin_referer( \"simple-page-ordering-nonce-move-{$post->ID}\", 'spo_nonce' );\n\n\t\t\tif ( ! current_user_can( 'edit_post', $post->ID ) ) {\n\t\t\t\twp_die( esc_html__( 'You are not allowed to edit this item.', 'simple-page-ordering' ) );\n\t\t\t}\n\n\t\t\tif ( 0 === $post->post_parent ) {\n\t\t\t\t// Top level. Politely continue without doing anything.\n\t\t\t\tself::redirect_to_referer();\n\t\t\t}\n\n\t\t\t$ancestors = get_post_ancestors( $post );\n\n\t\t\t// If only one ancestor, set to top level page.\n\t\t\tif ( 1 === count( $ancestors ) ) {\n\t\t\t\t$parent_id = 0;\n\t\t\t} else {\n\t\t\t\t$parent_id = $ancestors[1];\n\t\t\t}\n\n\t\t\t// Update the post.\n\t\t\twp_update_post(\n\t\t\t\tarray(\n\t\t\t\t\t'ID'          => $post->ID,\n\t\t\t\t\t'post_parent' => $parent_id,\n\t\t\t\t)\n\t\t\t);\n\n\t\t\tself::redirect_to_referer();\n\t\t}\n\n\t\t/**\n\t\t * Move a post out/down the post parent tree.\n\t\t *\n\t\t * This is a custom action on the edit page to modify the post parent\n\t\t * to be the child of it's previous sibling post on the current post\n\t\t * tree.\n\t\t *\n\t\t * @param int $post_id The post ID.\n\t\t */\n\t\tpublic static function handle_move_under_sibling( $post_id ) {\n\t\t\t$post = get_post( $post_id );\n\t\t\tif ( ! $post ) {\n\t\t\t\tself::redirect_to_referer();\n\t\t\t}\n\n\t\t\tcheck_admin_referer( \"simple-page-ordering-nonce-move-{$post->ID}\", 'spo_nonce' );\n\n\t\t\tif ( ! current_user_can( 'edit_post', $post->ID ) ) {\n\t\t\t\twp_die( esc_html__( 'You are not allowed to edit this item.', 'simple-page-ordering' ) );\n\t\t\t}\n\n\t\t\tlist( 'top_level_pages' => $top_level_pages, 'children_pages' => $children_pages ) = self::get_walked_pages( $post->post_type );\n\n\t\t\t// Get the relevant siblings.\n\t\t\tif ( 0 === $post->post_parent ) {\n\t\t\t\t$siblings = $top_level_pages;\n\t\t\t} else {\n\t\t\t\t$siblings = $children_pages[ $post->post_parent ];\n\t\t\t}\n\n\t\t\t// Check if the post being moved is a top level page.\n\t\t\t$filtered_siblings = wp_list_filter( $siblings, array( 'ID' => $post->ID ) );\n\t\t\tif ( empty( $filtered_siblings ) ) {\n\t\t\t\t// Something went wrong. Do nothing.\n\t\t\t\tself::redirect_to_referer();\n\t\t\t}\n\n\t\t\t// Find the previous page in the sibling tree\n\t\t\t$key = array_key_first( $filtered_siblings );\n\t\t\tif ( 0 === $key ) {\n\t\t\t\t// It's the first page. Do nothing.\n\t\t\t\tself::redirect_to_referer();\n\t\t\t}\n\n\t\t\t$previous_page    = $siblings[ $key - 1 ];\n\t\t\t$previous_page_id = $previous_page->ID;\n\n\t\t\t// Update the post with the previous page as the parent.\n\t\t\twp_update_post(\n\t\t\t\tarray(\n\t\t\t\t\t'ID'          => $post->ID,\n\t\t\t\t\t'post_parent' => $previous_page_id,\n\t\t\t\t)\n\t\t\t);\n\n\t\t\tself::redirect_to_referer();\n\t\t}\n\n\t\t/**\n\t\t * Redirect the user after modifying the post parent.\n\t\t */\n\t\tpublic static function redirect_to_referer() {\n\t\t\tglobal $post_type;\n\n\t\t\t$send_back = wp_get_referer();\n\t\t\tif ( ! $send_back ||\n\t\t\t\tstr_contains( $send_back, 'post.php' ) ||\n\t\t\t\tstr_contains( $send_back, 'post-new.php' ) ) {\n\t\t\t\tif ( 'attachment' === $post_type ) {\n\t\t\t\t\t$send_back = admin_url( 'upload.php' );\n\t\t\t\t} else {\n\t\t\t\t\t$send_back = admin_url( 'edit.php' );\n\t\t\t\t\tif ( ! empty( $post_type ) ) {\n\t\t\t\t\t\t$send_back = add_query_arg( 'post_type', $post_type, $send_back );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t$send_back = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'ids' ), $send_back );\n\t\t\t}\n\n\t\t\twp_safe_redirect( $send_back );\n\t\t\texit;\n\t\t}\n\n\t\t/**\n\t\t * Walk the pages and return top level and children pages.\n\t\t *\n\t\t * @param string $post_type Post type to walk.\n\t\t *\n\t\t * @return array {\n\t\t *    @type WP_Post[] $top_level_pages Top level pages.\n\t\t *    @type WP_Post[] $children_pages  Children pages.\n\t\t * }\n\t\t */\n\t\tpublic static function get_walked_pages( $post_type = 'page' ) {\n\t\t\tglobal $wpdb;\n\t\t\t$pages = get_pages(\n\t\t\t\tarray(\n\t\t\t\t\t'sort_column' => 'menu_order title',\n\t\t\t\t\t'post_type'   => $post_type,\n\t\t\t\t)\n\t\t\t);\n\n\t\t\t$top_level_pages = array();\n\t\t\t$children_pages  = array();\n\t\t\t$bad_parents     = array();\n\n\t\t\tforeach ( $pages as $page ) {\n\t\t\t\t// Catch and repair bad pages.\n\t\t\t\tif ( $page->post_parent === $page->ID ) {\n\t\t\t\t\t$page->post_parent = 0;\n\t\t\t\t\t// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery -- Intentionally using query for speed, cache is cleared afterwards.\n\t\t\t\t\t$wpdb->update( $wpdb->posts, array( 'post_parent' => 0 ), array( 'ID' => $page->ID ) );\n\t\t\t\t\tclean_post_cache( $page );\n\t\t\t\t\t$bad_parents[] = $page->ID;\n\t\t\t\t}\n\n\t\t\t\tif ( $page->post_parent > 0 ) {\n\t\t\t\t\t$children_pages[ $page->post_parent ][] = $page;\n\t\t\t\t} else {\n\t\t\t\t\t$top_level_pages[] = $page;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Reprime post cache for bad parents.\n\t\t\t_prime_post_caches( $bad_parents, false, false );\n\n\t\t\treturn array(\n\t\t\t\t'top_level_pages' => $top_level_pages,\n\t\t\t\t'children_pages'  => $children_pages,\n\t\t\t);\n\t\t}\n\n\t\t/**\n\t\t * Loads the plugin textdomain\n\t\t */\n\t\tpublic static function load_textdomain() {\n\t\t\t_deprecated_function( __METHOD__, '2.8.0' );\n\t\t}\n\n\t\t/**\n\t\t * Determine whether given post type is sortable or not.\n\t\t *\n\t\t * @param string $post_type Post type to check.\n\t\t *\n\t\t * @return boolean\n\t\t */\n\t\tprivate static function is_post_type_sortable( $post_type = 'post' ) {\n\t\t\t$sortable = ( post_type_supports( $post_type, 'page-attributes' ) || is_post_type_hierarchical( $post_type ) );\n\n\t\t\t/**\n\t\t\t * Change default ordering support for a post type.\n\t\t\t *\n\t\t\t * @since 2.0.0\n\t\t\t *\n\t\t\t * @param boolean $sortable Whether this post type is sortable or not.\n\t\t\t * @param string  $post_type The post type being checked.\n\t\t\t */\n\t\t\treturn apply_filters( 'simple_page_ordering_is_sortable', $sortable, $post_type );\n\t\t}\n\n\t\t/**\n\t\t * Load up page ordering scripts for the edit screen\n\t\t */\n\t\tpublic static function load_edit_screen() {\n\t\t\t$screen    = get_current_screen();\n\t\t\t$post_type = $screen->post_type;\n\n\t\t\t// is post type sortable?\n\t\t\t$sortable = self::is_post_type_sortable( $post_type );\n\t\t\tif ( ! $sortable ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// does user have the right to manage these post objects?\n\t\t\tif ( ! self::check_edit_others_caps( $post_type ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// add view by menu order to views\n\t\t\tadd_filter(\n\t\t\t\t'views_' . $screen->id,\n\t\t\t\tarray(\n\t\t\t\t\t__CLASS__,\n\t\t\t\t\t'sort_by_order_link',\n\t\t\t\t)\n\t\t\t);\n\t\t\tadd_action( 'pre_get_posts', array( __CLASS__, 'filter_query' ) );\n\t\t\tadd_action( 'wp', array( __CLASS__, 'wp' ) );\n\t\t\tadd_action( 'admin_head', array( __CLASS__, 'admin_head' ) );\n\t\t\tadd_action( 'page_row_actions', array( __CLASS__, 'page_row_actions' ), 10, 2 );\n\t\t}\n\n\t\t/**\n\t\t * This is to enable pagination.\n\t\t *\n\t\t * @param WP_Query $query The WP_Query instance (passed by reference).\n\t\t */\n\t\tpublic static function filter_query( $query ) {\n\t\t\tif ( ! $query->is_main_query() ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Filtering of List Table does not require sanitization.\n\t\t\t$is_simple_page_ordering = isset( $_GET['id'] ) ? 'simple-page-ordering' === $_GET['id'] : false;\n\n\t\t\tif ( ! $is_simple_page_ordering ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t$query->set( 'posts_per_page', -1 );\n\t\t}\n\n\t\t/**\n\t\t * when we load up our posts query, if we're actually sorting by menu order, initialize sorting scripts\n\t\t */\n\t\tpublic static function wp() {\n\t\t\t$orderby   = get_query_var( 'orderby' );\n\t\t\t$screen    = get_current_screen();\n\t\t\t$post_type = $screen->post_type ?? 'post';\n\n\t\t\tif ( ( is_string( $orderby ) && 0 === strpos( $orderby, 'menu_order' ) ) || ( isset( $orderby['menu_order'] ) && 'ASC' === $orderby['menu_order'] ) ) {\n\n\t\t\t\t$script_name       = 'dist/js/simple-page-ordering.js';\n\t\t\t\t$script_asset_path = plugin_dir_path( __FILE__ ) . 'dist/js/simple-page-ordering.asset.php';\n\t\t\t\t$script_asset      = file_exists( $script_asset_path )\n\t\t\t\t\t? require $script_asset_path // phpcs:ignore WordPressVIPMinimum.Files.IncludingFile.UsingVariable -- file exists check above.\n\t\t\t\t\t: false;\n\n\t\t\t\tif ( false !== $script_asset ) {\n\t\t\t\t\t$script_url = plugins_url( $script_name, __FILE__ );\n\t\t\t\t\twp_enqueue_script( 'simple-page-ordering', $script_url, $script_asset['dependencies'], $script_asset['version'], true );\n\n\t\t\t\t\twp_localize_script(\n\t\t\t\t\t\t'simple-page-ordering',\n\t\t\t\t\t\t'simple_page_ordering_localized_data',\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'_wpnonce'         => wp_create_nonce( 'simple-page-ordering-nonce' ),\n\t\t\t\t\t\t\t/* translators: %1$s is replaced with the post type name */\n\t\t\t\t\t\t\t'confirmation_msg' => sprintf( esc_html__( 'Are you sure you want to reset the ordering of the \"%1$s\" post type?', 'simple-page-ordering' ), $post_type ),\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\n\t\t\t\t\twp_enqueue_style( 'simple-page-ordering', plugins_url( '/dist/css/simple-page-ordering.css', __FILE__ ), array(), $script_asset['version'] );\n\t\t\t\t} else {\n\t\t\t\t\tadd_action(\n\t\t\t\t\t\t'admin_notices',\n\t\t\t\t\t\tfunction () {\n\t\t\t\t\t\t\t?>\n\t\t\t\t\t\t\t<div class=\"notice notice-warning is-dismissible\">\n\t\t\t\t\t\t\t\t<p><?php echo wp_kses_post( __( 'It looks like you are using a development copy of <strong>Simple Page Ordering</strong>. Please run <code>npm i; npm run build</code> to create assets.', 'simple-page-ordering' ) ); ?></p>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<?php\n\t\t\t\t\t\t}\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/**\n\t\t * Add page ordering help to the help tab\n\t\t */\n\t\tpublic static function admin_head() {\n\t\t\t$screen    = get_current_screen();\n\t\t\t$post_type = $screen->post_type ?? 'post';\n\n\t\t\t$screen->add_help_tab(\n\t\t\t\tarray(\n\t\t\t\t\t'id'      => 'simple_page_ordering_help_tab',\n\t\t\t\t\t'title'   => esc_html__( 'Simple Page Ordering', 'simple-page-ordering' ),\n\t\t\t\t\t'content' => sprintf(\n\t\t\t\t\t\t'<p>%s</p><a href=\"#\" id=\"simple-page-ordering-reset\" data-posttype=\"%s\">%s</a>',\n\t\t\t\t\t\tesc_html__( 'To reposition an item, simply drag and drop the row by \"clicking and holding\" it anywhere (outside of the links and form controls) and moving it to its new position.', 'simple-page-ordering' ),\n\t\t\t\t\t\tesc_attr( get_query_var( 'post_type' ) ),\n\t\t\t\t\t\t/* translators: %1$s is replaced with the post type name */\n\t\t\t\t\t\tsprintf( esc_html__( 'Reset %1$s order', 'simple-page-ordering' ), $post_type )\n\t\t\t\t\t),\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\n\t\t/**\n\t\t * Modify the row actions for hierarchical post types.\n\t\t *\n\t\t * This adds the actions to change the parent/child relationships.\n\t\t *\n\t\t * @param array   $actions An array of row action links.\n\t\t * @param WP_Post $post    The post object.\n\t\t */\n\t\tpublic static function page_row_actions( $actions, $post ) {\n\t\t\t$post = get_post( $post );\n\t\t\tif ( ! $post ) {\n\t\t\t\treturn $actions;\n\t\t\t}\n\n\t\t\tif ( ! current_user_can( 'edit_post', $post->ID ) ) {\n\t\t\t\treturn $actions;\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Allow or disallow new row actions.\n\t\t\t *\n\t\t\t * @since 2.7.5\n\t\t\t *\n\t\t\t * @param boolean $should_add_actions Whether to add the new row actions.\n\t\t\t * @param array   $actions            An array of row action links.\n\t\t\t * @param WP_Post $post               The post object.\n\t\t\t */\n\t\t\t$should_add_actions = apply_filters( 'simple_page_ordering_allow_row_actions', true, $actions, $post );\n\t\t\tif ( ! $should_add_actions ) {\n\t\t\t\treturn $actions;\n\t\t\t}\n\n\t\t\tlist( 'top_level_pages' => $top_level_pages, 'children_pages' => $children_pages ) = self::get_walked_pages( $post->post_type );\n\n\t\t\t$edit_link                   = get_edit_post_link( $post->ID, 'raw' );\n\t\t\t$move_under_grandparent_link = add_query_arg(\n\t\t\t\tarray(\n\t\t\t\t\t'action'    => 'spo-move-under-grandparent',\n\t\t\t\t\t'spo_nonce' => wp_create_nonce( \"simple-page-ordering-nonce-move-{$post->ID}\" ),\n\t\t\t\t\t'post_type' => $post->post_type,\n\t\t\t\t),\n\t\t\t\t$edit_link\n\t\t\t);\n\t\t\t$move_under_sibling_link     = add_query_arg(\n\t\t\t\tarray(\n\t\t\t\t\t'action'    => 'spo-move-under-sibling',\n\t\t\t\t\t'spo_nonce' => wp_create_nonce( \"simple-page-ordering-nonce-move-{$post->ID}\" ),\n\t\t\t\t\t'post_type' => $post->post_type,\n\t\t\t\t),\n\t\t\t\t$edit_link\n\t\t\t);\n\n\t\t\t$parent_id = $post->post_parent;\n\t\t\tif ( $parent_id ) {\n\t\t\t\t$actions['spo-move-under-grandparent'] = sprintf(\n\t\t\t\t\t'<a href=\"%s\">%s</a>',\n\t\t\t\t\tesc_url( $move_under_grandparent_link ),\n\t\t\t\t\tsprintf(\n\t\t\t\t\t\t/* translators: %s: parent page/post title */\n\t\t\t\t\t\t__( 'Move out from under %s', 'simple-page-ordering' ),\n\t\t\t\t\t\tget_the_title( $parent_id )\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t}\n\n\t\t\t// Get the relevant siblings.\n\t\t\tif ( 0 === $post->post_parent ) {\n\t\t\t\t$siblings = $top_level_pages;\n\t\t\t} else {\n\t\t\t\t$siblings = $children_pages[ $post->post_parent ] ?? array();\n\t\t\t}\n\n\t\t\t// Assume no sibling.\n\t\t\t$sibling = 0;\n\t\t\t// Check if the post being moved is a top level page.\n\t\t\t$filtered_siblings = wp_list_filter( $siblings, array( 'ID' => $post->ID ) );\n\t\t\tif ( ! empty( $filtered_siblings ) ) {\n\t\t\t\t// Find the previous page in the sibling tree\n\t\t\t\t$key = array_key_first( $filtered_siblings );\n\t\t\t\tif ( 0 === $key ) {\n\t\t\t\t\t// It's the first page, can't do anything.\n\t\t\t\t\t$sibling = 0;\n\t\t\t\t} else {\n\t\t\t\t\t$previous_page = $siblings[ $key - 1 ];\n\t\t\t\t\t$sibling       = $previous_page->ID;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( $sibling ) {\n\t\t\t\t$actions['spo-move-under-sibling'] = sprintf(\n\t\t\t\t\t'<a href=\"%s\">%s</a>',\n\t\t\t\t\tesc_url( $move_under_sibling_link ),\n\t\t\t\t\tsprintf(\n\t\t\t\t\t\t/* translators: %s: sibling page/post title */\n\t\t\t\t\t\t__( 'Move under %s', 'simple-page-ordering' ),\n\t\t\t\t\t\tget_the_title( $sibling )\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t}\n\n\t\t\treturn $actions;\n\t\t}\n\n\t\t/**\n\t\t * Page ordering ajax callback\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tpublic static function ajax_simple_page_ordering() {\n\t\t\t// check and make sure we have what we need\n\t\t\tif ( empty( $_POST['id'] ) || ( ! isset( $_POST['previd'] ) && ! isset( $_POST['nextid'] ) ) ) {\n\t\t\t\tdie( - 1 );\n\t\t\t}\n\n\t\t\t$nonce = isset( $_POST['_wpnonce'] ) ? sanitize_key( wp_unslash( $_POST['_wpnonce'] ) ) : '';\n\n\t\t\tif ( ! wp_verify_nonce( $nonce, 'simple-page-ordering-nonce' ) ) {\n\t\t\t\tdie( -1 );\n\t\t\t}\n\n\t\t\t$post_id = empty( $_POST['id'] ) ? false : (int) $_POST['id'];\n\t\t\t$previd  = empty( $_POST['previd'] ) ? false : (int) $_POST['previd'];\n\t\t\t$nextid  = empty( $_POST['nextid'] ) ? false : (int) $_POST['nextid'];\n\t\t\t$start   = empty( $_POST['start'] ) ? 1 : (int) $_POST['start'];\n\t\t\t// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Sanitized after json_decode.\n\t\t\t$excluded = empty( $_POST['excluded'] ) ? array( $post_id ) : array_filter( json_decode( wp_unslash( $_POST['excluded'] ), true ), 'intval' );\n\n\t\t\t// real post?\n\t\t\t$post = empty( $post_id ) ? false : get_post( (int) $post_id );\n\t\t\tif ( ! $post ) {\n\t\t\t\tdie( - 1 );\n\t\t\t}\n\n\t\t\t// does user have the right to manage these post objects?\n\t\t\tif ( ! self::check_edit_others_caps( $post->post_type ) ) {\n\t\t\t\tdie( - 1 );\n\t\t\t}\n\n\t\t\t$result = self::page_ordering( $post_id, $previd, $nextid, $start, $excluded );\n\n\t\t\tif ( is_wp_error( $result ) ) {\n\t\t\t\tdie( -1 );\n\t\t\t}\n\n\t\t\tdie( wp_json_encode( $result ) );\n\t\t}\n\n\t\t/**\n\t\t * Page ordering reset ajax callback\n\t\t *\n\t\t * @return void\n\t\t */\n\t\tpublic static function ajax_reset_simple_page_ordering() {\n\t\t\tglobal $wpdb;\n\n\t\t\t$nonce = isset( $_POST['_wpnonce'] ) ? sanitize_key( wp_unslash( $_POST['_wpnonce'] ) ) : '';\n\n\t\t\tif ( ! wp_verify_nonce( $nonce, 'simple-page-ordering-nonce' ) ) {\n\t\t\t\tdie( -1 );\n\t\t\t}\n\n\t\t\t// check and make sure we have what we need\n\t\t\t$post_type = isset( $_POST['post_type'] ) ? sanitize_text_field( wp_unslash( $_POST['post_type'] ) ) : '';\n\n\t\t\tif ( empty( $post_type ) ) {\n\t\t\t\tdie( -1 );\n\t\t\t}\n\n\t\t\t// does user have the right to manage these post objects?\n\t\t\tif ( ! self::check_edit_others_caps( $post_type ) ) {\n\t\t\t\tdie( -1 );\n\t\t\t}\n\n\t\t\t/*\n\t\t\t * Reset the order of all posts of given post type.\n\t\t\t *\n\t\t\t * Doing this manually via a direct query for speed in order to bypass the overhead\n\t\t\t * of multiple calls to `wp_update_post()`.\n\t\t\t */\n\t\t\t// phpcs:ignore WordPress.DB.DirectDatabaseQuery\n\t\t\t$post_ids = $wpdb->get_col(\n\t\t\t\t$wpdb->prepare(\n\t\t\t\t\t\"SELECT ID FROM $wpdb->posts WHERE post_type = %s AND menu_order != 0\",\n\t\t\t\t\t$post_type\n\t\t\t\t)\n\t\t\t);\n\t\t\t$post_ids = array_map( 'intval', $post_ids ); // Required for cache keys.\n\t\t\t// phpcs:ignore WordPress.DB.DirectDatabaseQuery\n\t\t\t$wpdb->query(\n\t\t\t\t$wpdb->prepare(\n\t\t\t\t\tsprintf(\n\t\t\t\t\t\t\"UPDATE $wpdb->posts SET menu_order = 0 WHERE ID IN (%s)\",\n\t\t\t\t\t\timplode( ',', array_fill( 0, count( $post_ids ), '%d' ) )\n\t\t\t\t\t),\n\t\t\t\t\t$post_ids\n\t\t\t\t)\n\t\t\t);\n\n\t\t\t/*\n\t\t\t * Clear the post caches.\n\t\t\t *\n\t\t\t * `clean_post_cache()` is not used here as it will clear the post, post meta, terms and\n\t\t\t * other related caches. This is much more expensive than necessary for clearing the menu\n\t\t\t * order cache.\n\t\t\t */\n\t\t\tif ( empty( $_wp_suspend_cache_invalidation ) ) {\n\t\t\t\t// Clear the post caches.\n\t\t\t\twp_cache_delete_multiple( $post_ids, 'posts' );\n\t\t\t\twp_cache_set_posts_last_changed();\n\t\t\t}\n\n\t\t\tdie( 0 );\n\t\t}\n\n\t\t/**\n\t\t * Page ordering function\n\t\t *\n\t\t * @param int   $post_id  The post ID.\n\t\t * @param int   $previd   The previous post ID.\n\t\t * @param int   $nextid   The next post ID.\n\t\t * @param int   $start    The start index.\n\t\t * @param array $excluded Array of post IDs.\n\t\t *\n\t\t * @return object|WP_Error|\"children\"\n\t\t */\n\t\tpublic static function page_ordering( $post_id, $previd, $nextid, $start, $excluded ) {\n\t\t\t// real post?\n\t\t\t$post = empty( $post_id ) ? false : get_post( (int) $post_id );\n\t\t\tif ( ! $post ) {\n\t\t\t\treturn new WP_Error( 'invalid', __( 'Missing mandatory parameters.', 'simple-page-ordering' ) );\n\t\t\t}\n\n\t\t\t// Badly written plug-in hooks for save post can break things.\n\t\t\tif ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG ) {\n\t\t\t\t// phpcs:ignore WordPress.PHP.DevelopmentFunctions.prevent_path_disclosure_error_reporting, WordPress.PHP.DiscouragedPHPFunctions.runtime_configuration_error_reporting -- Intentionally suppressing errors from third-party plugins during ordering.\n\t\t\t\terror_reporting( 0 );\n\t\t\t}\n\n\t\t\tglobal $wp_version;\n\n\t\t\t$previd   = empty( $previd ) ? false : (int) $previd;\n\t\t\t$nextid   = empty( $nextid ) ? false : (int) $nextid;\n\t\t\t$start    = empty( $start ) ? 1 : (int) $start;\n\t\t\t$excluded = empty( $excluded ) ? array( $post_id ) : array_filter( (array) $excluded, 'intval' );\n\n\t\t\t$new_pos     = array(); // store new positions for ajax\n\t\t\t$return_data = new stdClass();\n\n\t\t\tdo_action( 'simple_page_ordering_pre_order_posts', $post, $start );\n\n\t\t\t// attempt to get the intended parent... if either sibling has a matching parent ID, use that\n\t\t\t$parent_id        = $post->post_parent;\n\t\t\t$next_post_parent = $nextid ? wp_get_post_parent_id( $nextid ) : false;\n\n\t\t\tif ( $previd === $next_post_parent ) {    // if the preceding post is the parent of the next post, move it inside\n\t\t\t\t$parent_id = $next_post_parent;\n\t\t\t} elseif ( $next_post_parent !== $parent_id ) {  // otherwise, if the next post's parent isn't the same as our parent, we need to study\n\t\t\t\t$prev_post_parent = $previd ? wp_get_post_parent_id( $previd ) : false;\n\t\t\t\tif ( $prev_post_parent !== $parent_id ) {    // if the previous post is not our parent now, make it so!\n\t\t\t\t\t$parent_id = ( false !== $prev_post_parent ) ? $prev_post_parent : $next_post_parent;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// if the next post's parent isn't our parent, it might as well be false (irrelevant to our query)\n\t\t\tif ( $next_post_parent !== $parent_id ) {\n\t\t\t\t$nextid = false;\n\t\t\t}\n\n\t\t\t$max_sortable_posts = (int) apply_filters( 'simple_page_ordering_limit', 50 );    // should reliably be able to do about 50 at a time\n\n\t\t\tif ( $max_sortable_posts < 5 ) {    // don't be ridiculous!\n\t\t\t\t$max_sortable_posts = 50;\n\t\t\t}\n\n\t\t\t// we need to handle all post stati, except trash (in case of custom stati)\n\t\t\t$post_stati = get_post_stati(\n\t\t\t\tarray(\n\t\t\t\t\t'show_in_admin_all_list' => true,\n\t\t\t\t)\n\t\t\t);\n\n\t\t\t$siblings_query = array(\n\t\t\t\t'depth'                  => 1,\n\t\t\t\t'posts_per_page'         => $max_sortable_posts,\n\t\t\t\t'post_type'              => $post->post_type,\n\t\t\t\t'post_status'            => $post_stati,\n\t\t\t\t'post_parent'            => $parent_id,\n\t\t\t\t'post__not_in'           => $excluded, // phpcs:ignore WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_post__not_in -- Likely faster via the DB than PHP.\n\t\t\t\t'orderby'                => array(\n\t\t\t\t\t'menu_order' => 'ASC',\n\t\t\t\t\t'title'      => 'ASC',\n\t\t\t\t),\n\t\t\t\t'update_post_term_cache' => false,\n\t\t\t\t'update_post_meta_cache' => false,\n\t\t\t\t'suppress_filters'       => true, // phpcs:ignore WordPressVIPMinimum.Performance.WPQueryParams.SuppressFilters_suppress_filters\n\t\t\t\t'ignore_sticky_posts'    => true,\n\t\t\t);\n\n\t\t\tif ( version_compare( $wp_version, '4.0', '<' ) ) {\n\t\t\t\t$siblings_query['orderby'] = 'menu_order title';\n\t\t\t\t$siblings_query['order']   = 'ASC';\n\t\t\t}\n\n\t\t\t$siblings = new WP_Query( $siblings_query ); // fetch all the siblings (relative ordering)\n\n\t\t\t// don't waste overhead of revisions on a menu order change (especially since they can't *all* be rolled back at once)\n\t\t\tremove_action( 'post_updated', 'wp_save_post_revision' );\n\n\t\t\tforeach ( $siblings->posts as $sibling ) :\n\t\t\t\t// don't handle the actual post\n\t\t\t\tif ( $sibling->ID === $post->ID ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// if this is the post that comes after our repositioned post, set our repositioned post position and increment menu order\n\t\t\t\tif ( $nextid === $sibling->ID ) {\n\t\t\t\t\twp_update_post(\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'ID'          => $post->ID,\n\t\t\t\t\t\t\t'menu_order'  => $start,\n\t\t\t\t\t\t\t'post_parent' => $parent_id,\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\n\t\t\t\t\t$ancestors            = get_post_ancestors( $post->ID );\n\t\t\t\t\t$new_pos[ $post->ID ] = array(\n\t\t\t\t\t\t'menu_order'  => $start,\n\t\t\t\t\t\t'post_parent' => $parent_id,\n\t\t\t\t\t\t'depth'       => count( $ancestors ),\n\t\t\t\t\t);\n\n\t\t\t\t\t++$start;\n\t\t\t\t}\n\n\t\t\t\t// if repositioned post has been set, and new items are already in the right order, we can stop\n\t\t\t\tif ( isset( $new_pos[ $post->ID ] ) && $sibling->menu_order >= $start ) {\n\t\t\t\t\t$return_data->next = false;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t// set the menu order of the current sibling and increment the menu order\n\t\t\t\tif ( $sibling->menu_order !== $start ) {\n\t\t\t\t\twp_update_post(\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'ID'         => $sibling->ID,\n\t\t\t\t\t\t\t'menu_order' => $start,\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\t$new_pos[ $sibling->ID ] = $start;\n\t\t\t\t++$start;\n\n\t\t\t\tif ( ! $nextid && $previd === $sibling->ID ) {\n\t\t\t\t\twp_update_post(\n\t\t\t\t\t\tarray(\n\t\t\t\t\t\t\t'ID'          => $post->ID,\n\t\t\t\t\t\t\t'menu_order'  => $start,\n\t\t\t\t\t\t\t'post_parent' => $parent_id,\n\t\t\t\t\t\t)\n\t\t\t\t\t);\n\n\t\t\t\t\t$ancestors            = get_post_ancestors( $post->ID );\n\t\t\t\t\t$new_pos[ $post->ID ] = array(\n\t\t\t\t\t\t'menu_order'  => $start,\n\t\t\t\t\t\t'post_parent' => $parent_id,\n\t\t\t\t\t\t'depth'       => count( $ancestors ),\n\t\t\t\t\t);\n\t\t\t\t\t++$start;\n\t\t\t\t}\n\n\t\t\tendforeach;\n\n\t\t\t// max per request\n\t\t\tif ( ! isset( $return_data->next ) && $siblings->max_num_pages > 1 ) {\n\t\t\t\t$return_data->next = array(\n\t\t\t\t\t'id'       => $post->ID,\n\t\t\t\t\t'previd'   => $previd,\n\t\t\t\t\t'nextid'   => $nextid,\n\t\t\t\t\t'start'    => $start,\n\t\t\t\t\t'excluded' => array_merge( array_keys( $new_pos ), $excluded ),\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\t$return_data->next = false;\n\t\t\t}\n\n\t\t\tdo_action( 'simple_page_ordering_ordered_posts', $post, $new_pos );\n\n\t\t\tif ( ! $return_data->next ) {\n\t\t\t\t// if the moved post has children, we need to refresh the page (unless we're continuing)\n\t\t\t\t$children = new WP_Query(\n\t\t\t\t\tarray(\n\t\t\t\t\t\t'posts_per_page'         => 1,\n\t\t\t\t\t\t'post_type'              => $post->post_type,\n\t\t\t\t\t\t'post_status'            => $post_stati,\n\t\t\t\t\t\t'post_parent'            => $post->ID,\n\t\t\t\t\t\t'fields'                 => 'ids',\n\t\t\t\t\t\t'update_post_term_cache' => false,\n\t\t\t\t\t\t'update_post_meta_cache' => false,\n\t\t\t\t\t\t'ignore_sticky'          => true,\n\t\t\t\t\t\t'no_found_rows'          => true,\n\t\t\t\t\t)\n\t\t\t\t);\n\n\t\t\t\tif ( $children->have_posts() ) {\n\t\t\t\t\treturn 'children';\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$return_data->new_pos = $new_pos;\n\n\t\t\treturn $return_data;\n\t\t}\n\n\t\t/**\n\t\t * Append a sort by order link to the post actions\n\t\t *\n\t\t * @param array $views An array of available list table views.\n\t\t *\n\t\t * @return array\n\t\t */\n\t\tpublic static function sort_by_order_link( $views ) {\n\t\t\t$class        = ( get_query_var( 'orderby' ) === 'menu_order title' ) ? 'current' : '';\n\t\t\t$query_string = remove_query_arg( array( 'orderby', 'order' ) );\n\t\t\tif ( ! is_post_type_hierarchical( get_post_type() ) ) {\n\t\t\t\t$query_string = add_query_arg( 'orderby', 'menu_order title', $query_string );\n\t\t\t\t$query_string = add_query_arg( 'order', 'asc', $query_string );\n\t\t\t\t$query_string = add_query_arg( 'id', 'simple-page-ordering', $query_string );\n\t\t\t}\n\t\t\t$views['byorder'] = sprintf( '<a href=\"%s\" class=\"%s\">%s</a>', esc_url( $query_string ), $class, __( 'Sort by Order', 'simple-page-ordering' ) );\n\n\t\t\treturn $views;\n\t\t}\n\n\t\t/**\n\t\t * Checks to see if the current user has the capability to \"edit others\" for a post type\n\t\t *\n\t\t * @param string $post_type Post type name\n\t\t *\n\t\t * @return bool True or false\n\t\t */\n\t\tprivate static function check_edit_others_caps( $post_type ) {\n\t\t\t$post_type_object = get_post_type_object( $post_type );\n\t\t\t$edit_others_cap  = empty( $post_type_object ) ? 'edit_others_' . $post_type . 's' : $post_type_object->cap->edit_others_posts;\n\n\t\t\treturn apply_filters( 'simple_page_ordering_edit_rights', current_user_can( $edit_others_cap ), $post_type );\n\t\t}\n\n\t\t/**\n\t\t * Registers the API endpoint for sorting from the REST endpoint\n\t\t */\n\t\tpublic static function rest_api_init() {\n\t\t\tregister_rest_route(\n\t\t\t\t'simple-page-ordering/v1',\n\t\t\t\t'page_ordering',\n\t\t\t\tarray(\n\t\t\t\t\t'methods'             => 'POST',\n\t\t\t\t\t'callback'            => array( __CLASS__, 'rest_page_ordering' ),\n\t\t\t\t\t'permission_callback' => array( __CLASS__, 'rest_page_ordering_permissions_check' ),\n\t\t\t\t\t'args'                => array(\n\t\t\t\t\t\t'id'      => array(\n\t\t\t\t\t\t\t'description' => __( 'ID of item we want to sort', 'simple-page-ordering' ),\n\t\t\t\t\t\t\t'required'    => true,\n\t\t\t\t\t\t\t'type'        => 'integer',\n\t\t\t\t\t\t\t'minimum'     => 1,\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'previd'  => array(\n\t\t\t\t\t\t\t'description' => __( 'ID of item we want to be previous to after sorting', 'simple-page-ordering' ),\n\t\t\t\t\t\t\t'required'    => true,\n\t\t\t\t\t\t\t'type'        => array( 'boolean', 'integer' ),\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'nextid'  => array(\n\t\t\t\t\t\t\t'description' => __( 'ID of item we want to be next to after sorting', 'simple-page-ordering' ),\n\t\t\t\t\t\t\t'required'    => true,\n\t\t\t\t\t\t\t'type'        => array( 'boolean', 'integer' ),\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'start'   => array(\n\t\t\t\t\t\t\t'default'     => 1,\n\t\t\t\t\t\t\t'description' => __( 'Index we start with when sorting', 'simple-page-ordering' ),\n\t\t\t\t\t\t\t'required'    => false,\n\t\t\t\t\t\t\t'type'        => 'integer',\n\t\t\t\t\t\t),\n\t\t\t\t\t\t// phpcs:ignore WordPressVIPMinimum.Performance.WPQueryParams.PostNotIn_exclude -- false positive.\n\t\t\t\t\t\t'exclude' => array(\n\t\t\t\t\t\t\t'default'     => array(),\n\t\t\t\t\t\t\t'description' => __( 'Array of IDs we want to exclude', 'simple-page-ordering' ),\n\t\t\t\t\t\t\t'required'    => false,\n\t\t\t\t\t\t\t'type'        => 'array',\n\t\t\t\t\t\t\t'items'       => array(\n\t\t\t\t\t\t\t\t'type' => 'integer',\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t),\n\t\t\t\t\t),\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\n\t\t/**\n\t\t * Check if a given request has access to reorder content.\n\t\t *\n\t\t * This check ensures the current user making the request has\n\t\t * proper permissions to edit the item, that the post type\n\t\t * is allowed in REST requests and the post type is sortable.\n\t\t *\n\t\t * @since 2.5.1\n\t\t *\n\t\t * @param WP_REST_Request $request Full data about the request.\n\t\t * @return bool|WP_Error\n\t\t */\n\t\tpublic static function rest_page_ordering_permissions_check( \\WP_REST_Request $request ) {\n\t\t\t$post_id = $request->get_param( 'id' );\n\n\t\t\t// Ensure we have a logged in user that can edit the item.\n\t\t\tif ( ! current_user_can( 'edit_post', $post_id ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t$post_type     = get_post_type( $post_id );\n\t\t\t$post_type_obj = get_post_type_object( $post_type );\n\n\t\t\t// Ensure the post type is allowed in REST endpoints.\n\t\t\tif ( ! $post_type || empty( $post_type_obj ) || empty( $post_type_obj->show_in_rest ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Ensure this post type is sortable.\n\t\t\tif ( ! self::is_post_type_sortable( $post_type ) ) {\n\t\t\t\treturn new WP_Error( 'not_enabled', esc_html__( 'This post type is not sortable.', 'simple-page-ordering' ) );\n\t\t\t}\n\n\t\t\treturn true;\n\t\t}\n\n\t\t/**\n\t\t * Handle REST page sorting\n\t\t *\n\t\t * @param WP_REST_Request $request The REST request object.\n\t\t */\n\t\tpublic static function rest_page_ordering( \\WP_REST_Request $request ) {\n\t\t\t$post_id  = empty( $request->get_param( 'id' ) ) ? false : (int) $request->get_param( 'id' );\n\t\t\t$previd   = empty( $request->get_param( 'previd' ) ) ? false : (int) $request->get_param( 'previd' );\n\t\t\t$nextid   = empty( $request->get_param( 'nextid' ) ) ? false : (int) $request->get_param( 'nextid' );\n\t\t\t$start    = empty( $request->get_param( 'start' ) ) ? 1 : (int) $request->get_param( 'start' );\n\t\t\t$excluded = empty( $request->get_param( 'excluded' ) ) ? array( $request->get_param( 'id' ) ) : array_filter( (array) json_decode( $request->get_param( 'excluded' ) ), 'intval' );\n\n\t\t\t// Check and make sure we have what we need.\n\t\t\tif ( false === $post_id || ( false === $previd && false === $nextid ) ) {\n\t\t\t\treturn new WP_Error( 'invalid', __( 'Missing mandatory parameters.', 'simple-page-ordering' ) );\n\t\t\t}\n\n\t\t\t$page_ordering = self::page_ordering( $post_id, $previd, $nextid, $start, $excluded );\n\n\t\t\tif ( is_wp_error( $page_ordering ) ) {\n\t\t\t\treturn $page_ordering;\n\t\t\t}\n\n\t\t\treturn new WP_REST_Response(\n\t\t\t\tarray(\n\t\t\t\t\t'status'        => 200,\n\t\t\t\t\t'response'      => 'success',\n\t\t\t\t\t'body_response' => $page_ordering,\n\t\t\t\t)\n\t\t\t);\n\t\t}\n\t}\n\n\tSimple_Page_Ordering::get_instance();\n\nendif;\n"
  },
  {
    "path": "composer.json",
    "content": "{\n  \"name\": \"10up/simple-page-ordering\",\n  \"description\": \"Order your pages and other hierarchical post types with simple drag and drop right from the standard page list.\",\n  \"type\": \"wordpress-plugin\",\n  \"keywords\": [\n    \"wordpress\",\n    \"10up\"\n  ],\n  \"homepage\": \"https://github.com/10up/simple-page-ordering\",\n  \"license\": \"GPLv2\",\n  \"authors\": [\n    {\n      \"name\": \"10up\",\n      \"homepage\": \"https://10up.com/\"\n    }\n  ],\n  \"support\": {\n    \"issues\": \"https://github.com/10up/simple-page-ordering/issues\",\n    \"source\": \"https://github.com/10up/simple-page-ordering\"\n  },\n  \"minimum-stability\": \"dev\",\n  \"require\": {\n    \"10up/wp-compat-validation-tool\": \"0.4.0\"\n  },\n  \"config\": {\n    \"allow-plugins\": {\n      \"dealerdirect/phpcodesniffer-composer-installer\": true,\n      \"composer/installers\": true\n    },\n    \"platform-check\": false\n  },\n  \"scripts\": {\n      \"post-install-cmd\": [\n          \"./10up-lib/wp-compat-validation-tool/replace-namespace.sh Simple_Page_Ordering_Validator simple-page-ordering\"\n      ],\n      \"post-update-cmd\": [\n          \"./10up-lib/wp-compat-validation-tool/replace-namespace.sh Simple_Page_Ordering_Validator simple-page-ordering\"\n      ]\n  },\n  \"extra\": {\n    \"installer-paths\": {\n      \"./{$name}/\": [\"10up/wp-compat-validation-tool\"]\n    }\n  },\n  \"require-dev\": {\n    \"wp-coding-standards/wpcs\": \"^3.0\",\n    \"phpcompatibility/phpcompatibility-wp\": \"^3.0@dev\",\n    \"automattic/vipwpcs\": \"^3.0\"\n  }\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"simple-page-ordering\",\n  \"description\": \"Order your pages and other hierarchical post types with simple drag and drop right from the standard page list.\",\n  \"version\": \"2.8.0\",\n  \"author\": \"10up <opensource@10up.com> (https://10up.com)\",\n  \"license\": \"GPL-2.0-or-later\",\n  \"devDependencies\": {\n    \"@10up/cypress-wp-utils\": \"^0.2.0\",\n    \"@wordpress/dependency-extraction-webpack-plugin\": \"^5.1.0\",\n    \"@wordpress/env\": \"^10.28.0\",\n    \"@wordpress/eslint-plugin\": \"^17.5.0\",\n    \"10up-toolkit\": \"^6.5.0\",\n    \"cypress\": \"^13.0.0\",\n    \"cypress-mochawesome-reporter\": \"^3.6.0\",\n    \"mochawesome-json-to-md\": \"^0.7.2\",\n    \"prettier\": \"^3.3.2\"\n  },\n  \"scripts\": {\n    \"cypress:open\": \"cypress open --config-file tests/cypress/config.config.js\",\n    \"cypress:run\": \"cypress run --config-file tests/cypress/config.config.js\",\n    \"env\": \"wp-env\",\n    \"env:start\": \"wp-env start\",\n    \"env:stop\": \"wp-env stop\",\n    \"postenv:start\": \"./tests/bin/initialize.sh\",\n    \"build\": \"10up-toolkit build\",\n    \"dev\": \"10up-toolkit build --watch\",\n    \"format-js\": \"10up-toolkit format-js\",\n    \"lint-js\": \"10up-toolkit lint-js\"\n  },\n  \"10up-toolkit\": {\n    \"devURL\": \"https://simple-page-ordering.test\",\n    \"entry\": {\n      \"simple-page-ordering\": \"./assets/js/src/simple-page-ordering.js\"\n    }\n  },\n  \"dependencies\": {\n    \"@wordpress/html-entities\": \"^3.50.0\"\n  }\n}\n"
  },
  {
    "path": "readme.txt",
    "content": "=== Simple Page Ordering ===\r\nContributors:      10up, jakemgold, welcher, helen, thinkoomph, jeffpaul\r\nDonate link:       http://10up.com/plugins/simple-page-ordering-wordpress/\r\nTags:              order, re-order, ordering, page, menu order\r\nTested up to:      7.0\r\nStable tag:        2.8.0\r\nLicense:           GPLv2 or later\r\nLicense URI:       http://www.gnu.org/licenses/gpl-2.0.html\r\n\r\nOrder your pages and other custom post types that support \"page-attributes\" with drag and drop right from the standard page list.\r\n\r\n== Description ==\r\n\r\nOrder your pages, hierarchical custom post types, or custom post types with \"page-attributes\" with drag and drop right from the built in page list.\r\n\r\nDrag 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.\r\n\r\nThe plug-in is \"capabilities aware\" - only users with the ability to edit others' pages (editors and administrators) will be able to reorder content.\r\n\r\nIntegrated help is included: click the \"help\" tab at the top right of the screen.\r\n\r\nPlease note that the plug-in is not compatible with Internet Explorer 7 and earlier, due to limitations within those browsers.\r\n\r\n=== Contributing ===\r\n\r\nWe'd love to have you join in on development over on [GitHub](https://github.com/10up/simple-page-ordering).\r\n\r\n== Installation ==\r\n\r\n1. Install either via the WordPress.org plugin directory, or by uploading the files to your server.\r\n1. Activate the plugin through the 'Plugins' menu in WordPress.\r\n1. Get to work reordering your content!\r\n\r\n== Frequently Asked Questions ==\r\n\r\n= Why can't I reorder my posts? =\r\n\r\nGeneric 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:\r\n\r\n`add_post_type_support( 'post', 'page-attributes' );`\r\n\r\n= Can I make my custom post type take advantage of this plug-in? =\r\n\r\nYep. 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.\r\n\r\n`'supports' => array( 'title', 'editor', 'page-attributes' ),`\r\n\r\nAlternatively, when you register the post type, set `hierarchical` to `true` - hierarchical post types natively order by menu order.\r\n\r\nYou 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.\r\n\r\n= I want my non-hierarchical post type to be sortable. Help! =\r\n\r\nSee the previous two answers - just add `page-attributes` to the list of supported post type features.\r\n\r\n= I reordered my posts, but the order didn't change on the front end of my site! =\r\n\r\nThis plug-in doesn't change any *behavior* on the front end, it simply changes the menu order stored in WordPress.\r\n\r\nIf 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).\r\n\r\n= I reordered my content, it seemed to work, but when I refreshed, it went back to the old order! =\r\n\r\nThis 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:\r\n\r\n`add_filter( 'simple_page_ordering_limit', function($number) { return 5; } );`\r\n\r\nWhere 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.\r\n\r\n= What happened to the drop down box that let me change the number of items on each page in the admin? =\r\n\r\nThis 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.\r\n\r\n= How can I modify sortable post types? =\r\n\r\nPost types can be included or excluded by using the `simple_page_ordering_is_sortable` filter.\r\n\r\nFor example, to exclude the `excluded_post_type` custom post type, add the following snippet in the theme function file or custom plugin:\r\n\r\n`\r\nadd_filter( 'simple_page_ordering_is_sortable', function( $sortable, $post_type ) {\r\n\tif ( 'excluded_post_type' === $post_type ) {\r\n\t\treturn false;\r\n\t}\r\n\treturn $sortable;\r\n}, 10, 2 );\r\n`\r\n\r\nTo include the `include_post_type` custom post type, add the following snippet in the theme function file or custom plugin:\r\n\r\n`\r\nadd_filter( 'simple_page_ordering_is_sortable', function( $sortable, $post_type ) {\r\n\tif ( 'include_post_type' === $post_type ) {\r\n\t\treturn true;\r\n\t}\r\n\treturn $sortable;\r\n}, 10, 2 );\r\n`\r\n\r\n= Can I use REST to order posts? =\r\n\r\nYes. The plugin registers the REST endpoint `simple-page-ordering/v1/page_ordering`.\r\n\r\n= Where do I report security bugs found in this plugin? =\r\n\r\nPlease 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.\r\n\r\n== Screenshots ==\r\n\r\n1. Dragging the page to its new position\r\n1. Processing indicator\r\n\r\n== Changelog ==\r\n\r\n= 2.8.0 - 2026-05-15 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n= 2.7.4 - 2025-05-19 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n= 2.7.3 - 2025-03-11 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n= 2.7.2 - 2024-08-21 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n= 2.7.1 - 2024-06-03 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n= 2.7.0 - 2024-04-03 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n= 2.6.3 - 2023-11-09 =\r\n* **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))\r\n\r\n= 2.6.2 - 2023-11-09 =\r\n* **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)).\r\n\r\n= 2.6.1 - 2023-11-08 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n= 2.6.0 - 2023-10-25 =\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **Changed:** Bump WordPress \"tested up to\" version 6.3 (props [@jeffpaul](https://github.com/jeffpaul), [@QAharshalkadu](https://github.com/QAharshalkadu)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n* **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)).\r\n\r\n[View historical changelog details here](https://github.com/10up/simple-page-ordering/blob/develop/CHANGELOG.md).\r\n\r\n== Upgrade Notice ==\r\n\r\n= 2.8.0 =\r\nThis release bumps the minimum required version of WordPress from 6.6 to 6.8.\r\n\r\n= 2.7.4 =\r\nThis release bumps the minimum required version of WordPress from 6.5 to 6.6.\r\n\r\n= 2.7.3 =\r\nThis release bumps the minimum required version of WordPress from 6.4 to 6.5.\r\n\r\n= 2.7.2 =\r\nThis release bumps the minimum required version of WordPress from 6.3 to 6.4.\r\n\r\n= 2.5.0 =\r\nThis release bumps the minimum required versions of PHP from 5.6 to 7.4 and WordPress from 3.8 to 5.7.\r\n\r\n"
  },
  {
    "path": "simple-page-ordering.php",
    "content": "<?php\n/**\n * Plugin Name:       Simple Page Ordering\n * Plugin URI:        http://10up.com/plugins/simple-page-ordering-wordpress/\n * Description:       Order your pages and hierarchical post types using drag and drop on the built in page list. For further instructions, open the \"Help\" tab on the Pages screen.\n * Version:           2.8.0\n * Requires at least: 6.8\n * Requires PHP:      7.4\n * Author:            10up\n * Author URI:        https://10up.com\n * License:           GPLv2 or later\n * License URI:       https://www.gnu.org/licenses/gpl-2.0.html\n * Text Domain:       simple-page-ordering\n *\n * @package simple-page-ordering\n */\n\nif ( ! defined( 'ABSPATH' ) ) {\n\texit;\n}\n\nif ( ! is_readable( __DIR__ . '/10up-lib/wp-compat-validation-tool/src/Validator.php' ) ) {\n\treturn;\n}\n\n// Useful global constants.\nrequire_once __DIR__ . '/10up-lib/wp-compat-validation-tool/src/Validator.php';\n\n$simple_page_ordering_compat_checker = new \\Simple_Page_Ordering_Validator\\Validator();\n$simple_page_ordering_compat_checker\n\t->set_plugin_name( 'Simple Page Ordering' )\n\t->set_php_min_required_version( '7.4' );\n\nif ( ! $simple_page_ordering_compat_checker->is_plugin_compatible() ) {\n\treturn;\n}\n\nrequire_once __DIR__ . '/class-simple-page-ordering.php';\n"
  },
  {
    "path": "tests/bin/initialize.sh",
    "content": "#!/bin/bash\nwp-env run tests-wordpress chmod -c ugo+w /var/www/html\nwp-env run tests-cli wp rewrite structure '/%postname%/' --hard\nwp-env run tests-cli wp site empty --yes\n\n# Create Posts\nwp-env run tests-cli wp post create --post_status=publish --post_title='Post 1'\nwp-env run tests-cli wp post create --post_status=publish --post_title='Post 2'\nwp-env run tests-cli wp post create --post_status=publish --post_title='Post 3'\n# Create Pages\nwp-env run tests-cli wp post create --post_status=publish --post_type=page  --post_title='Page 1' --menu_order=10\nwp-env run tests-cli wp post create --post_status=publish --post_type=page  --post_title='Page 2' --menu_order=20\nwp-env run tests-cli wp post create --post_status=publish --post_type=page  --post_title='Page 3' --menu_order=30\nwp-env run tests-cli wp post create --post_status=publish --post_type=page  --post_title='Hey there! 👋' --menu_order=15\nwp-env run tests-cli wp post create --post_status=publish --post_type=page --post_parent=6 --post_title='Child Page 1' --menu_order=10\nwp-env run tests-cli wp post create --post_status=publish --post_type=page --post_parent=6 --post_title='Child Page 2' --menu_order=20\nwp-env run tests-cli wp post create --post_status=publish --post_type=page --post_parent=6 --post_title='Child Page 3' --menu_order=30\n"
  },
  {
    "path": "tests/bin/set-wp-config.js",
    "content": "#!/usr/bin/env node\n\nconst fs = require( 'fs' );\n\nconst path = `${ process.cwd() }/.wp-env.override.json`;\n\nlet config = fs.existsSync( path ) ? require( path ) : { plugins: [ '.' ] };\n\nconst args = {};\nprocess.argv\n    .slice(2, process.argv.length)\n    .forEach( arg => {\n        if (arg.slice(0,2) === '--') {\n            const param = arg.split('=');\n            const paramName = param[0].slice(2,param[0].length);\n            const paramValue = param.length > 1 ? param[1] : true;\n            args[paramName] = paramValue;\n        }\n    });\n\nif ( ! args.core && ! args.plugins ) {\n    return;\n}\n\nif ( 'latest' === args.core ) {\n    delete args.core;\n}\n\nif( Object.keys(args).length === 0 ) {\n    return;\n}\n\nif ( args.plugins ) {\n    args.plugins = args.plugins.split(',');\n}\n\nconfig = {\n    ...config,\n    ...args,\n}\n\ntry {\n   fs.writeFileSync( path, JSON.stringify( config ) );\n} catch ( err ) {\n    console.error( err );\n}\n"
  },
  {
    "path": "tests/bin/wp-cli.yml",
    "content": "apache_modules:\n  - mod_rewrite\n"
  },
  {
    "path": "tests/cypress/config.config.js",
    "content": "const { defineConfig } = require('cypress')\n\nmodule.exports = defineConfig({\n  fixturesFolder: __dirname+'/fixtures',\n  screenshotsFolder: __dirname+'/screenshots',\n  videosFolder: __dirname+'/videos',\n  downloadsFolder: __dirname+'/downloads',\n  video: true,\n  reporter: 'mochawesome',\n  reporterOptions: {\n    mochaFile: \"mochawesome-[name]\",\n    reportDir: __dirname+\"/reports\",\n    overwrite: false,\n    html: false,\n    json: true\n  },\n  e2e: {\n    // We've imported your old cypress plugins here.\n    // You may want to clean this up later by importing these.\n    setupNodeEvents(on, config) {\n      return require(__dirname+'/plugins/index.js')(on, config)\n    },\n    specPattern: __dirname+'/integration/*.test.{js,jsx,ts,tsx}',\n    supportFile: __dirname+'/support/index.js',\n  },\n})\n"
  },
  {
    "path": "tests/cypress/fixtures/example.json",
    "content": "{\n  \"name\": \"Using fixtures to represent data\",\n  \"email\": \"hello@cypress.io\",\n  \"body\": \"Fixtures are a great way to mock data for responses to routes\"\n}\n"
  },
  {
    "path": "tests/cypress/integration/admin.test.js",
    "content": "describe('Admin can login and make sure plugin is activated', () => {\n\tit('Can activate plugin if it is deactivated', () => {\n\t\tcy.login();\n\t\tcy.visit('/wp-admin/plugins.php');\n\n\t\tcy.get('body')\n\t\t\t.then(($body) => {\n\t\t\t\tif ($body.find('#the-list tr[data-slug=\"simple-page-ordering\"] .deactivate > a').length > 0) {\n\t\t\t\t\tcy.get('#the-list tr[data-slug=\"simple-page-ordering\"] .deactivate > a').click();\n\t\t\t\t\tcy.get('#the-list tr[data-slug=\"simple-page-ordering\"] .activate > a').click();\n\t\t\t\t\tcy.get('#the-list tr[data-slug=\"simple-page-ordering\"] .deactivate > a').should('have.text', 'Deactivate');\n\t\t\t\t} else {\n\t\t\t\t\tcy.get('#the-list tr#simple-page-ordering .deactivate > a').click();\n\t\t\t\t\tcy.get('#the-list tr#simple-page-ordering .activate > a').click();\n\t\t\t\t\tcy.get('#the-list tr#simple-page-ordering .deactivate > a').should('have.text', 'Deactivate');\n\t\t\t\t}\n\t\t\t});\n\t});\n\n\tit('Can see \"Sort by Order\" on Pages list page.', () => {\n\t\tcy.login();\n\t\tcy.visit('/wp-admin/edit.php?post_type=page');\n\t\tcy.get('.subsubsub .byorder').should('have.text', 'Sort by Order');\n\t});\n\n\tit('Pagination is visible when Clicking \"Sort by Order\"', () => {\n\t\tcy.login();\n\t\tcy.visit( '/wp-admin/edit.php?post_type=page' );\n\t\tcy.get( '#show-settings-link' ).click();\n\t\tcy.get( '#edit_page_per_page' ).type( '{selectAll}{del}2' );\n\t\tcy.get( '#screen-options-apply' ).click();\n\t\tcy.get( '.byorder' ).click();\n\t\tcy.get( '.pagination-links' ).should( 'be.visible' );\n\n\t\t// Restore default pagination.\n\t\tcy.get( '#show-settings-link' ).click();\n\t\tcy.get( '#edit_page_per_page' ).type( '{selectAll}{del}60' );\n\t\tcy.get( '#screen-options-apply' ).click();\n\t});\n});\n"
  },
  {
    "path": "tests/cypress/integration/page-ordering.test.js",
    "content": "describe('Test Page Order Change', () => {\n\tconst firstTopLevelPage = '.wp-list-table tbody tr:nth-child(1)';\n\tconst secondTopLevelPage = '.wp-list-table tbody tr:nth-child(2)';\n\tconst firstChildPage = '.wp-list-table .level-0 + .level-1';\n\tconst secondChildPage = '.wp-list-table .level-0 + .level-1 + .level-1';\n\n\tbeforeEach(() => {\n\t\tcy.login();\n\t\tcy.visit('/wp-admin/edit.php?post_type=page');\n\n\t\tcy.get(`${firstTopLevelPage} .row-title`).invoke('text').as('initialFirstTopLevelPageTitle', { type: 'static' } );\n\t\tcy.get(`${secondTopLevelPage} .row-title`).invoke('text').as('initialSecondTopLevelPageTitle', { type: 'static' } );\n\n\t\tcy.get(`${firstChildPage} .row-title`).invoke('text').as('initialFirstChildPageTitle', { type: 'static' } );\n\t\tcy.get(`${secondChildPage} .row-title`).invoke('text').as('initialSecondChildPageTitle', { type: 'static' } );\n\t});\n\n\tit('Can change parent pages order', () => {\n\t\tcy.get(firstTopLevelPage).drag(secondTopLevelPage);\n\t\t// wait for order update done.\n\t\tcy.get(`${secondTopLevelPage}  .check-column input`).should('exist');\n\n\t\tcy.get( '@initialSecondTopLevelPageTitle' ).then( initialSecondTopLevelPageTitle => {\n\t\t\t// Now that it has been reordered, the first row should have the initial second text.\n\t\t\tcy.get( `${firstTopLevelPage} .row-title` ).should('have.text', `${initialSecondTopLevelPageTitle}` );\n\t\t} );\n\n\t\tcy.get( '@initialFirstTopLevelPageTitle' ).then( initialFirstTopLevelPageTitle => {\n\t\t\t// Now that it has been reordered, the second row should have the initial first text.\n\t\t\tcy.get( `${secondTopLevelPage} .row-title` ).should('have.text', `${initialFirstTopLevelPageTitle}` );\n\t\t} );\n\t});\n\n\tit('Can change Child pages order', () => {\n\t\tcy.get(firstChildPage).drag(secondChildPage);\n\t\t// wait for order update done.\n\t\tcy.get(`${secondChildPage}  .check-column input`).should('exist');\n\n\t\tcy.get( '@initialSecondChildPageTitle' ).then( initialSecondChildPageTitle => {\n\t\t\t// Now that it has been reordered, the first row should have the initial second text.\n\t\t\tcy.get( `${firstChildPage} .row-title` ).should('have.text', `${initialSecondChildPageTitle}` );\n\t\t} );\n\n\t\tcy.get( '@initialFirstChildPageTitle' ).then( initialFirstChildPageTitle => {\n\t\t\t// Now that it has been reordered, the second row should have the initial first text.\n\t\t\tcy.get( `${secondChildPage} .row-title` ).should('have.text', `${initialFirstChildPageTitle}` );\n\t\t} );\n\t});\n\n\tit('Can preserve emojis in page titles during reordering', () => {\n\t\t// Find the emoji page that was created during setup\n\t\tcy.contains('.row-title', 'Hey there! 👋').should('exist').as('emojiPage');\n\t\t\n\t\t// Get the parent row of our emoji page\n\t\tcy.get('@emojiPage').parents('tr').as('emojiPageRow');\n\t\t\n\t\t// Store the initial emoji title text\n\t\tcy.get('@emojiPage').invoke('text').as('initialEmojiTitle');\n\t\t\n\t\t// Get the ID of the emoji page row for debugging\n\t\tcy.get('@emojiPageRow').invoke('attr', 'id').then(rowId => {\n\t\t\tcy.log('Emoji page row ID:', rowId);\n\t\t});\n\t\t\n\t\t// Perform the drag operation to trigger the callback\n\t\tcy.get('@emojiPageRow').drag(secondTopLevelPage);\n\t\t\n\t\t// Wait for the ordering update to complete with a timeout\n\t\tcy.get('.wp-list-table tbody tr .check-column input', { timeout: 10000 }).should('exist');\n\t\t\n\t\t// Add a small wait to ensure the callback has completed\n\t\tcy.wait(1000);\n\t\t\n\t\t// Verify the emoji is still present and unchanged in the title\n\t\tcy.get('@initialEmojiTitle').then(initialTitle => {\n\t\t\tcy.log('Initial title was:', initialTitle);\n\t\t\tcy.contains('.row-title', 'Hey there! 👋')\n\t\t\t\t.should('exist')\n\t\t\t\t.should('have.text', initialTitle);\n\t\t});\n\t});\n\n\t// Reset page ordering state.\n\tafter( () => {\n\t\tcy.login();\n\t\tcy.visit('/wp-admin/edit.php?post_type=page');\n\n\t\tcy.get( firstTopLevelPage ).drag( secondTopLevelPage );\n\t\tcy.get( firstChildPage ).drag( secondChildPage );\n\t} );\n});\n"
  },
  {
    "path": "tests/cypress/integration/post-ordering.test.js",
    "content": "describe('Test Post Order Change', () => {\n\tconst firstPost = '.wp-list-table tbody tr:nth-child(1)';\n\tconst secondPost = '.wp-list-table tbody tr:nth-child(2)';\n\n\tbeforeEach(() => {\n\t\tcy.login();\n\t\tcy.visit('/wp-admin/edit.php?orderby=menu_order+title&order=asc');\n\n\t\tcy.get(`${firstPost} .row-title`).invoke('text').as('initialFirstPostTitle', { type: 'static' } );\n\t\tcy.get(`${secondPost} .row-title`).invoke('text').as('initialSecondPostTitle', { type: 'static' } );\n\t});\n\n\tit('Can change posts order', () => {\n\t\tcy.get(firstPost).drag(secondPost);\n\t\t// wait for order update done.\n\t\tcy.get(`${secondPost}  .check-column input`).should('exist');\n\n\t\tcy.get( '@initialSecondPostTitle' ).then( initialSecondPostTitle => {\n\t\t\t// Now that it has been reordered, the first row should have the initial second text.\n\t\t\tcy.get( `${firstPost} .row-title` ).should('have.text', `${initialSecondPostTitle}` );\n\t\t} );\n\n\t\tcy.get( '@initialFirstPostTitle' ).then( initialFirstPostTitle => {\n\t\t\t// Now that it has been reordered, the second row should have the initial first text.\n\t\t\tcy.get( `${secondPost} .row-title` ).should('have.text', `${initialFirstPostTitle}` );\n\t\t} );\n\t});\n});\n"
  },
  {
    "path": "tests/cypress/integration/reset-page-ordering.test.js",
    "content": "describe( 'Test Reset Page Order Change', () => {\n\tit( 'Can reset pages order', () => {\n\t\tcy.login();\n\t\tcy.visit('/wp-admin/edit.php?post_type=page');\n\n\t\tconst firstRow = '.wp-list-table tbody tr:nth-child(1)';\n\t\tconst secondRow = '.wp-list-table tbody tr:nth-child(2)';\n\n\t\t// Alias titles as `firstRowText` and `secondRowText` for convenience.\n\t\tcy.get( firstRow ).find( '.row-title' ).invoke( 'text' ).as( 'firstRowText' );\n\t\tcy.get( secondRow ).find( '.row-title' ).invoke( 'text' ).as( 'secondRowText' );\n\n\t\t// Swap position of `Page 1` with `Page 2`.\n\t\tcy.get( firstRow ).drag( secondRow );\n\n\t\t// Verifies if 1st row has title `Page 2`.\n\t\tcy.get( firstRow ).find( '.row-title' ).invoke( 'text' ).then( function( text ) {\n\t\t\texpect( text ).to.eq( this.secondRowText );\n\t\t} );\n\n\t\t// Verifies if 2nd row has title `Page 1`.\n\t\tcy.get( secondRow ).find( '.row-title' ).invoke( 'text' ).then( function( text ) {\n\t\t\texpect( text ).to.eq( this.firstRowText );\n\t\t} );\n\n\t\t// Now reset the page order and verify original values are back.\n\t\tcy.get( '#contextual-help-link' ).click();\n\t\tcy.get( '#tab-link-simple_page_ordering_help_tab' ).click();\n\t\tcy.get( '#simple-page-ordering-reset' ).click();\n\t\tcy.on( 'window:confirm', () => true );\n\n\t\t// Perform a reload as Cypress won't after window:confirm.\n\t\tcy.reload();\n\n\t\t// Verifies if 1st row has title `Page 1`.\n\t\tcy.get( firstRow ).find( '.row-title' ).invoke( 'text' ).then( function( text ) {\n\t\t\texpect( text ).to.eq( this.firstRowText );\n\t\t} );\n\n\t\t// Verifies if 2nd row has title `Page 2`.\n\t\tcy.get( secondRow ).find( '.row-title' ).invoke( 'text' ).then( function( text ) {\n\t\t\texpect( text ).to.eq( this.secondRowText );\n\t\t} );\n\t} );\n} );\n"
  },
  {
    "path": "tests/cypress/plugins/index.js",
    "content": "/// <reference types=\"cypress\" />\n// ***********************************************************\n// This example plugins/index.js can be used to load plugins\n//\n// You can change the location of this file or turn off loading\n// the plugins file with the 'pluginsFile' configuration option.\n//\n// You can read more here:\n// https://on.cypress.io/plugins-guide\n// ***********************************************************\n\n// This function is called when a project is opened or re-opened (e.g. due to\n// the project's config changing)\n\nconst { loadConfig } = require( '@wordpress/env/lib/config' );\nconst getCacheDirectory = require( '@wordpress/env/lib/config/get-cache-directory' );\n\n/**\n * @type {Cypress.PluginConfig}\n */\n// eslint-disable-next-line no-unused-vars\nmodule.exports = async (on, config) => {\n  const cacheDirectory = await getCacheDirectory();\n  const wpEnvConfig = await loadConfig( cacheDirectory );\n\n  if (wpEnvConfig) {\n    const port = wpEnvConfig.env.tests.port || null;\n\n    if (port) {\n      config.baseUrl = wpEnvConfig.env.tests.config.WP_SITEURL;\n    }\n  }\n\n  return config;\n};\n"
  },
  {
    "path": "tests/cypress/support/commands.js",
    "content": "// ***********************************************\n// This example commands.js shows you how to\n// create various custom commands and overwrite\n// existing commands.\n//\n// For more comprehensive examples of custom\n// commands please read more here:\n// https://on.cypress.io/custom-commands\n// ***********************************************\n//\n//\n// -- This is a parent command --\n// Cypress.Commands.add('login', (email, password) => { ... })\n//\n//\n// -- This is a child command --\n// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })\n//\n//\n// -- This is a dual command --\n// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })\n//\n//\n// -- This will overwrite an existing command --\n// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })\n\nCypress.Commands.add('drag', { prevSubject: 'element'}, (subject, target) => {\n\tconst rectSource = subject[0].getBoundingClientRect();\n\tcy.get(target).then(el => {\n\t\tconst rectTarget = el[0].getBoundingClientRect();\n\n\t\tcy.window().then((window) => {\n\t\t\tconst pageX = rectSource.left + window.pageXOffset;\n\t\t\tconst pageY = rectSource.top + window.pageYOffset;\n\t\t\tconst targetPageX = rectTarget.left + window.pageXOffset;\n\t\t\tconst targetPageY = rectTarget.top + window.pageYOffset;\n\t\n\t\t\tcy.wrap(subject)\n\t\t\t\t.trigger('mouseover', { force: true })\n\t\t\t\t.trigger('mousedown', { which: 1, pageX, pageY, force: true })\n\t\t\t\t.trigger('mousemove', { which: 1, pageX: targetPageX, pageY: targetPageY, force: true })\n\t\t\t\t.trigger('mouseup', { force: true });\n\t\t});\n\t});\n});\n"
  },
  {
    "path": "tests/cypress/support/index.js",
    "content": "// ***********************************************************\n// This example support/index.js is processed and\n// loaded automatically before your test files.\n//\n// This is a great place to put global configuration and\n// behavior that modifies Cypress.\n//\n// You can change the location of this file or turn off\n// automatically serving support files with the\n// 'supportFile' configuration option.\n//\n// You can read more here:\n// https://on.cypress.io/configuration\n// ***********************************************************\nimport '@10up/cypress-wp-utils';\n\n// Import commands.js using ES2015 syntax:\nimport './commands';\n"
  },
  {
    "path": "tests/cypress/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"allowJs\": true,\n    \"types\": [\"cypress\"]\n  },\n  \"include\": [\"**/*.*\"]\n}\n"
  },
  {
    "path": "tests/test-plugins/enable-ordering-for-posts.php",
    "content": "<?php\n/**\n * Plugin Name: Enable ordering for posts.\n * Version:     1.0.0\n * Author:      10up Inc.\n * License:     GPLv2 or later\n */\n\nadd_action( 'after_setup_theme', function() {\n\tadd_post_type_support( 'post', 'page-attributes' );\n} );\n"
  },
  {
    "path": "webpack.config.js",
    "content": "const defaultConfig = require(\"10up-toolkit/config/webpack.config\");\nconst DependencyExtractionWebpackPlugin = require(\"@wordpress/dependency-extraction-webpack-plugin\");\n\nmodule.exports = {\n\t...defaultConfig,\n\tplugins: [\n\t\t...defaultConfig.plugins.filter(\n\t\t\t(plugin) =>\n\t\t\t\tplugin.constructor.name !== \"DependencyExtractionWebpackPlugin\"\n\t\t),\n\t\tnew DependencyExtractionWebpackPlugin({\n\t\t\trequestToExternal(request) {\n\t\t\t\tif (\"jquery-ui-sortable\" === request) {\n\t\t\t\t\treturn \"jquery-ui-sortable\";\n\t\t\t\t}\n\t\t\t},\n\t\t}),\n\t],\n};\n"
  }
]