Update screenshot references and improve WordPress.org submission documentation (v1.6.26)
This commit is contained in:
@ -5,7 +5,7 @@ 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 it in the root of your SVN assets directory
|
||||
4. Place them in the `/assets/` directory of your WordPress.org SVN repository
|
||||
|
||||
## How to Convert
|
||||
|
||||
@ -22,7 +22,11 @@ You can use tools like:
|
||||
## Command Line Conversion (if you have ImageMagick installed)
|
||||
|
||||
```bash
|
||||
convert -background none -size 256x256 assets/icon/fix-plugin-does-not-exist-notices-icon.svg assets/icon-png/icon-256x256.png
|
||||
# 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.
|
||||
|
Reference in New Issue
Block a user