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("Welcome to the new Wordpress theme.", true);
}

add_action('admin_notices', 'showAdminMessages');

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

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

php 在Wordpress中禁用默认仪表板小组件

php 在Wordpress仪表板菜单中重命名项目

PHP 已弃用的错误不会在 WordPress 仪表板上消失

php 在WordPress中添加全宽仪表板小部件

PHP Wordpress,替换默认的WordPress“W”仪表板中的徽标