在前端将作者姓名更改为站点名称

时间:2014-08-15 作者:Jay

如何在不修改主题的情况下将前端的作者名称改为站点名称?

我基本上是在寻找一些我可以在我的网站上打包为插件的东西,它将不再在前端的帖子或页面上显示作者的名字。

1 个回复
最合适的回答,由SO网友:birgire 整理而成

您可以通过the_author 过滤器:

/**
 * Set the author name as the site title.
 */

! is_admin() && add_filter( \'the_author\', 
    function( $author )
    {
        return get_bloginfo( \'name\' ); 
    }
);
在这里,我们在get_bloginfo() 作用

结束