Hi Plugin Review Team,
Thank you for your feedback.
I have addressed all the issues you mentioned and uploaded the corrected ZIP file via the plugin submission page.
Here is a summary of the changes:
1) [Summary of fix #1]
2) [Summary of fix #2]
3) [Summary of fix #3]
The new version is 1.0.1.
Please let me know if anything else is needed.
Best regards,
[Your Name]
11-2. 具体的な修正例を入れたテンプレート
Hi Plugin Review Team,
Thank you for reviewing my plugin and for your detailed feedback.
I have made all the requested changes and uploaded version 1.0.1 via the submission page.
Changes made:
1) Added esc_html() to all output in admin-page.php (lines 45, 67, 89)
2) Added nonce verification to the settings save function
3) Added current_user_can('manage_options') check before processing form data
4) Changed function prefix from "mp_" to "my_plugin_" throughout the plugin
5) Added sanitize_text_field() to all $_POST inputs
I have also re-run Plugin Check and confirmed there are no errors.
Please let me know if you need any additional changes.
Best regards,
[Your Name]
11-3. 質問がある場合のテンプレート
Hi Plugin Review Team,
Thank you for your feedback.
I have a question regarding point #2 in your email:
[Quote the specific feedback you're asking about]
Could you please clarify what changes are needed here? I want to make sure I understand correctly before making the fix.
I have already addressed the other issues:
1) [Summary of fix #1]
3) [Summary of fix #3]
Thank you for your help.
Best regards,
[Your Name]
① プラグインを修正
② バージョン番号を上げる(PHPヘッダー + readme.txt)
③ readme.txt の Changelog を更新
④ Plugin Check で確認
⑤ trunk を更新してコミット
⑥ tags に新バージョンをコピー
13-2. コマンド例
# 最新の状態を取得
cd ~/wp-plugins/your-plugin-slug
svn up
# trunk のファイルを更新
cp -r /path/to/updated-plugin/* trunk/
# 変更をコミット
svn ci -m "Update to version 1.0.1"
# tags に新バージョンをコピー
svn cp trunk tags/1.0.1
svn ci -m "Tagging version 1.0.1"
13-3. readme.txt だけの更新
WordPressのバージョンアップに合わせて「Tested up to」だけ更新する場合:
# trunk の readme.txt を編集
# Tested up to: 6.7 → 6.8 など
# コミット
svn ci trunk/readme.txt -m "Tested up to WordPress 6.8"
# tags の最新版も更新
svn ci tags/1.0.1/readme.txt -m "Tested up to WordPress 6.8"
コメント