diff --git a/.wordpress-org/README.md b/.wordpress-org/README.md index 95ff706..7044a0d 100644 --- a/.wordpress-org/README.md +++ b/.wordpress-org/README.md @@ -2,14 +2,16 @@ This directory contains assets specific to the WordPress.org plugin repository and is used for automatic deployment via GitHub Actions. -## Directory Contents +## Directory Structure -- `icon.svg` - Plugin icon displayed in the WordPress.org plugin directory -- `banner-772x250.png` - Standard banner for plugin header -- `banner-1544x500.png` - Retina banner for plugin header -- `screenshot-1.png` - First screenshot displayed on plugin page -- `screenshot-2.png` - Second screenshot displayed on plugin page -- `screenshot-3.png` - Third screenshot displayed on plugin page +``` +/assets/ + icon-256x256.png + icon-128x128.png + banner-772x250.png + banner-1544x500.png + screenshot-1.png +``` ## Purpose @@ -17,4 +19,21 @@ When using GitHub Actions for WordPress.org plugin deployments (via the 10up Wor ## Naming Conventions -Files must be named exactly as shown above to be properly recognized by the WordPress.org system during the deployment process. \ No newline at end of file +Files must be named exactly as shown above to be properly recognized by the WordPress.org system during the deployment process. + +## Right-to-Left (RTL) Support + +For plugins that support Right-to-Left languages (like Hebrew and Arabic), you can provide RTL versions of assets by appending `-rtl` to the filename: + +- `banner-772x250-rtl.png` +- `banner-1544x500-rtl.png` +- `icon-256x256-rtl.png` + +Note that the `-rtl` suffix is specifically for Right-to-Left language support, not for dark mode versions of assets. + +## Additional Resources + +For more detailed information about WordPress.org plugin assets, please see: + +- [WordPress Plugin Developer Handbook - Plugin Assets](https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/) +- [WordPress Plugin Directory README.txt Standard](https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/) \ No newline at end of file diff --git a/.wordpress-org/assets/banner-1544x500.png b/.wordpress-org/assets/banner-1544x500.png new file mode 100644 index 0000000..4a90efc Binary files /dev/null and b/.wordpress-org/assets/banner-1544x500.png differ diff --git a/.wordpress-org/assets/banner-772x250.png b/.wordpress-org/assets/banner-772x250.png new file mode 100644 index 0000000..dfb1eda Binary files /dev/null and b/.wordpress-org/assets/banner-772x250.png differ diff --git a/.wordpress-org/assets/icon-128x128.png b/.wordpress-org/assets/icon-128x128.png new file mode 100644 index 0000000..c1029b5 Binary files /dev/null and b/.wordpress-org/assets/icon-128x128.png differ diff --git a/.wordpress-org/assets/icon-256x256.png b/.wordpress-org/assets/icon-256x256.png new file mode 100644 index 0000000..67f6101 Binary files /dev/null and b/.wordpress-org/assets/icon-256x256.png differ diff --git a/.wordpress-org/assets/screenshot-1.png b/.wordpress-org/assets/screenshot-1.png new file mode 100644 index 0000000..a68aa64 Binary files /dev/null and b/.wordpress-org/assets/screenshot-1.png differ