Skip to content

Instantly share code, notes, and snippets.

@kasparsd
Last active November 21, 2024 11:47
Show Gist options
  • Save kasparsd/f5e1544f3eb14023b1f3c34c2ead35ef to your computer and use it in GitHub Desktop.
Save kasparsd/f5e1544f3eb14023b1f3c34c2ead35ef to your computer and use it in GitHub Desktop.
WordPress package ZIP structure and contents

WordPress core, plugin and theme ZIP structure

WordPress core:

wget https://wordpress.org/latest.zip
unzip -l latest.zip | head
Archive:  latest.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  11-12-2024 22:43   wordpress/
     3246  03-02-2024 15:49   wordpress/xmlrpc.php
      351  02-06-2020 08:33   wordpress/wp-blog-header.php
     7409  06-18-2024 14:59   wordpress/readme.html
    34385  06-19-2023 21:27   wordpress/wp-signup.php
      405  02-06-2020 08:33   wordpress/index.php
     5617  08-02-2024 22:40   wordpress/wp-cron.php

WordPress plugins:

wget https://downloads.wordpress.org/plugin/classic-editor.1.6.5.zip
unzip -l classic-editor.1.6.5.zip | head
Archive:  classic-editor.1.6.5.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  09-27-2024 21:51   classic-editor/
    37108  09-27-2024 21:51   classic-editor/classic-editor.php
        0  09-27-2024 21:51   classic-editor/js/
      624  08-11-2020 20:12   classic-editor/js/block-editor-plugin.js
    19104  08-11-2020 20:12   classic-editor/LICENSE.md
     7846  09-27-2024 21:51   classic-editor/readme.txt

WordPress themes:

wget https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip
unzip -l twentytwentyfour.1.3.zip | head
Archive:  twentytwentyfour.1.3.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  11-13-2024 00:12   twentytwentyfour/
        0  11-13-2024 00:12   twentytwentyfour/assets/
        0  11-13-2024 00:12   twentytwentyfour/assets/css/
      357  11-07-2023 19:00   twentytwentyfour/assets/css/button-outline.css
        0  11-13-2024 00:12   twentytwentyfour/assets/fonts/
        0  11-13-2024 00:12   twentytwentyfour/assets/fonts/cardo/
     4372  11-07-2023 19:00   twentytwentyfour/assets/fonts/cardo/LICENSE.txt

GitHub ZIP Structure

GitHub branch:

wget https://github.com/WordPress/gutenberg/archive/refs/heads/trunk.zip
unzip -l trunk.zip | head
Archive:  trunk.zip
b5732a58e930f28cb8aa34d2d1d2ca741e2abd93
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  11-21-2024 13:15   gutenberg-trunk/
       39  11-21-2024 13:15   gutenberg-trunk/.browserslistrc
        0  11-21-2024 13:15   gutenberg-trunk/.cache/
        0  11-21-2024 13:15   gutenberg-trunk/.cache/.gitkeep
      468  11-21-2024 13:15   gutenberg-trunk/.editorconfig
      152  11-21-2024 13:15   gutenberg-trunk/.eslintignore

GitHub tag (not release):

wget https://github.com/WordPress/gutenberg/archive/refs/tags/v19.7.0.zip
unzip -l v19.7.0.zip | head
Archive:  v19.7.0.zip
485abedf687dd66355892f623205c10f78e9b9a5
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  11-20-2024 19:16   gutenberg-19.7.0/
       39  11-20-2024 19:16   gutenberg-19.7.0/.browserslistrc
        0  11-20-2024 19:16   gutenberg-19.7.0/.cache/
        0  11-20-2024 19:16   gutenberg-19.7.0/.cache/.gitkeep
      468  11-20-2024 19:16   gutenberg-19.7.0/.editorconfig
      152  11-20-2024 19:16   gutenberg-19.7.0/.eslintignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment