Akismetプラグインのソースを見て、プラグインページにカスタムメッセージを表示する方法を知っていますが、プラグインがアクティブ化された後にメッセージが一度だけ表示されるようにしたいです。
どうすればこれができますか?
最も簡単な方法は、スタブget_optionのようなものをチェックすることです。
$run_once = get_option('run_once');
if (!$run_once){
//show your custom message here
// then update the option so this message won't show again
update_option('run_once',true);
}
お役に立てれば