ほとんどのWordPressプラグインは、GPLの下でリリースされており、これはWordPress自体が使用しているライセンスと同じです。しかし、他にも互換性のあるオプションが利用可能です。プラグインが使用しているライセンスを明確に示すことが常に最善です。
ヘッダー要件セクションでは、プラグインヘッダーコメント内でプラグインのライセンスを示す方法について簡単に説明しました。もう一つ一般的で推奨される方法は、メインプラグインファイルの上部近くにライセンスブロックコメントを配置することです(プラグインヘッダーコメントがある同じファイル)。
このライセンスブロックコメントは通常、次のようになります:
/*
{Plugin Name} is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
{Plugin Name} is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with {Plugin Name}. If not, see {URI to Plugin License}.
*/