已解决从 get_the_archive_title 钩子中检索 Wordpress 用户 ID

问题描述

我正在创建一个 WordPress 插件,并希望在所有用户名旁边添加自定义数据以用于帖子和评论。我已经成功地从评论中获得了用户 ID,但很难弄清楚如何对帖子和存档页面执行相同的操作。

这是我目前所拥有的:

public function __construct() {
    add_filter( 'get_comment_author',array( $this,'add_to_comment_author' ),10,3 );
    //add_filter( 'the_author_posts_link','add_to_post_author' ),1 );
    add_filter( 'get_the_archive_title',1 );
    
}
 
// Get comment author
function add_to_comment_author($author,$comment_id,$comment) { 
    $comment = get_comment( $comment_ID );

    return $author.GetStats($comment->user_id);
}

//Get post author
function add_to_post_author($author){
    $authorid = 1; //<--- the authors id
    return $author.GetStats($authorid);
}

我对 WordPress 插件开发和 PHP 比较陌生,所以任何指向正确方向的指针都将不胜感激:)

更新已解决 找到 global $authordata 变量后,我设法解决了这个问题。希望这会帮助其他人遇到这种情况,因为 WordPress 插件/主题开发的初学者问题。

 public function __construct() {
    add_filter( 'get_comment_author',$comment) { 
    $comment = get_comment( $comment_ID );

    return $author.GetStats($comment->user_id);
}

//Get post author
function add_to_post_author($author){
    global $authordata;//<--- global authordata filled before this action,giving access to everyhting about the user

    $authorid = $authordata->ID; //<--- the authors id
    return $author.GetStats($authorid);
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...