Clarify RTL support in WordPress.org asset documentation (v1.6.27)
Some checks failed
ci/woodpecker/push/woodpecker Pipeline is pending
Build Release / Build and Create Release (push) Has been cancelled
Build Release / Deploy to WordPress.org (push) Has been cancelled
ci/woodpecker/tag/woodpecker Pipeline failed

This commit is contained in:
2025-04-12 19:38:37 +01:00
parent 6942ae83aa
commit cf977a250d
15 changed files with 31 additions and 8 deletions

32
assets/icon/README.md Normal file
View File

@ -0,0 +1,32 @@
# WordPress.org Icon Requirements
For WordPress.org plugin submission, you need to:
1. Convert the SVG icon to PNG format
2. Create a 256x256 and 128x128 pixel version
3. Name them `icon-256x256.png` and `icon-128x128.png`
4. Place them in the `/assets/` directory of your WordPress.org SVN repository
## How to Convert
You can use tools like:
- Inkscape (free, open-source)
- Adobe Illustrator
- Adobe Photoshop
- Affinity Designer
- Affinity Photo
- GIMP
- Pixelmator
- Online converters like https://svgtopng.com/
## Command Line Conversion (if you have ImageMagick installed)
```bash
# For 256x256 icon
convert -background none -size 256x256 assets/icon/fix-plugin-does-not-exist-notices-icon.svg assets/icon/icon-256x256.png
# For 128x128 icon
convert -background none -size 128x128 assets/icon/fix-plugin-does-not-exist-notices-icon.svg assets/icon/icon-128x128.png
```
After creating the PNG file, it should be uploaded to the WordPress.org SVN repository in the assets directory.