PHP 取代“霍伊,管理员”?在WordPress管理栏中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 取代“霍伊,管理员”?在WordPress管理栏中相关的知识,希望对你有一定的参考价值。

function replace_howdy( $wp_admin_bar ) {
    $my_account=$wp_admin_bar->get_node('my-account');
    $newtitle = str_replace( 'Howdy,', 'Logged in as', $my_account->title );
    $wp_admin_bar->add_node( array(
        'id' => 'my-account',
        'title' => $newtitle,
    ) );
}
add_filter( 'admin_bar_menu', 'replace_howdy',25 );

以上是关于PHP 取代“霍伊,管理员”?在WordPress管理栏中的主要内容,如果未能解决你的问题,请参考以下文章

减轻从 xampp 到 wordpress 的静态 html 页面

node.js比php会不会取代php?

PHP 缓存插件之 Zend Opcache ( 取代 APC )

在 WordPress 页面中插入 PHP 代码并发布

在 WordPress (wp-load.php) 之外使用 WordPress:“无法修改标头信息 - 标头已发送”

PHP Wordpress:在任何Wordpress页面上显示最新的博客帖子