PHP 在WordPress管理面板中显示紧急消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在WordPress管理面板中显示紧急消息相关的知识,希望对你有一定的参考价值。

function showMessage($message, $errormsg = false)
{
	if ($errormsg) {
		echo '<div id="message" class="error">';
	}
	else {
		echo '<div id="message" class="updated fade">';
	}
	echo "<p><strong>$message</strong></p></div>";
} 

function showAdminMessages()
{
    showMessage("Working on Theme's function.php, Do not touch it till further notice.", true);
}
add_action('admin_notices', 'showAdminMessages');

以上是关于PHP 在WordPress管理面板中显示紧急消息的主要内容,如果未能解决你的问题,请参考以下文章