欢迎光临
我们一直在努力

如何在WordPress后台顶部添加错误提醒信息或升级提醒信息

建站超值云服务器,限时71元/月

我们都知道,如果WordPress官方推送新版本的WordPress时,都会在WordPress后台顶部显示一条高亮的提醒信息,如下如所示:

如何在WordPress后台顶部添加错误提醒信息或升级提醒信息

下面,倡萌就来分享下,在WordPress后台顶部添加错误提醒信息或升级提醒信息 的方法,这里需要借助 admin_notices 挂钩 来实现。只需要在主题的 functions.php 中添加下面的代码样例即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function showMessage($message, $errormsg = false)
{
	if ($errormsg) {
		echo '
<div id="message" class="error">';
	}
	else {
		echo '
<div id="message" class="updated fade">';
	}
	echo "
<strong>$message</strong>
</div>
";
} 
function showAdminMessages()
{
    showMessage("Welcome to the new WordPress theme.", true);
}
add_action('admin_notices', 'showAdminMessages');

function showMessage($message, $errormsg = false) { if ($errormsg) { echo ‘ <div id=”message” class=”error”>’; } else { echo ‘ <div id=”message” class=”updated fade”>’; } echo ” <strong>$message</strong> </div> “; } function showAdminMessages() { showMessage(“Welcome to the new WordPress theme.”, true); } add_action(‘admin_notices’, ‘showAdminMessages’);

参考资料:http://www.paulund.co.uk/show-urgent-messages-in-wordpress-dashboard

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 如何在WordPress后台顶部添加错误提醒信息或升级提醒信息
分享到: 更多 (0)