ほとんどのWordPressプラグインは、GPLの下でリリースされており、これはWordPress自体が使用しているライセンスと同じです。しかし、他にも互換性のあるオプションが利用可能です。プラグインが使用しているライセンスを明確に示すことが常に最善です。

    ヘッダー要件セクションでは、プラグインヘッダーコメント内でプラグインのライセンスを示す方法について簡単に説明しました。もう一つ一般的で推奨される方法は、メインプラグインファイルの上部近くにライセンスブロックコメントを配置することです(プラグインヘッダーコメントがある同じファイル)。

    このライセンスブロックコメントは通常、次のようになります:

    1. /*
    2. {Plugin Name} is free software: you can redistribute it and/or modify
    3. it under the terms of the GNU General Public License as published by
    4. the Free Software Foundation, either version 2 of the License, or
    5. any later version.
    6. {Plugin Name} is distributed in the hope that it will be useful,
    7. but WITHOUT ANY WARRANTY; without even the implied warranty of
    8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    9. GNU General Public License for more details.
    10. You should have received a copy of the GNU General Public License
    11. along with {Plugin Name}. If not, see {URI to Plugin License}.
    12. */