WordPressのプラグインをコーディングしています。function を使用するとregister_activation_hook
、次のエラーが発生します。
The plugin generated 28 characters of unexpected output during activation.
If you notice "headers already sent" messages,
problems with syndication feeds or other issues,
try deactivating or removing this plugin.
関連コード:
register_activation_hook(__FILE__, function(){
echo "<script>alert('ok')</script>";
});