Hook to change Author Info

时间:2016-05-22 作者:real_big_words

是否有一个钩子或过滤器可以让我在有人查看页面时更改帖子的作者?

谢谢

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

显然,“the\\u author”是一个合适的过滤器。

另外,$author显然是一个通用变量,因此这段代码运行良好:

add_filter("the_author", "change_author");

function change_author($author) {
    $author = "NEW AUTHOR!";

    return $author;
}

相关推荐

当作者ID和用户ID匹配时,is_Author(Get_Current_User_id())返回FALSE

在循环内部,作为登录到localhost测试站点时$user->ID == 1 功能is_author(get_current_user_id()) 退货false 什么时候get_the_author_meta(\'ID\') 返回1。因此,永远不会执行以下条件(is_user_logged_in() 退货true):if( is_user_logged_in() && is_author(get_current_user_id()) ) { // do stuff