例如,当您将用户重定向到管理仪表板时,传递一个名为“success\\u notice”的GET变量。因此,您会得到如下URL:/wp-admin/index.php?success_notice=1
.
使用该设置,只需在设置了GET变量的情况下添加在仪表板上显示成功消息的代码。
add_action(\'admin_notices\', \'wpse75629_admin_notice\');
function wpse75629_admin_notice()
{
global $pagenow;
// Only show this message on the admin dashboard and if asked for
if (\'index.php\' === $pagenow && ! empty($_GET[\'success_notice\']))
{
echo \'<div class="updated"><p>Your success message!</p></div>\';
}
}