我正在寻找一种方法来访问特定用户创作的所有评论。我知道无论用户(http://example.com/comments/feed/)是否都有针对所有评论的Feed,但有没有办法将评论限制为特定用户?
答案 0 :(得分:2)
get_comments()
功能允许您传入一系列参数来过滤 - http://codex.wordpress.org/Function_Reference/get_comments
要获取user_ID 1的所有注释,您可以使用:
$args = array( 'ID' => 1 );
$comments = get_comments( $args );
结果将是一系列符合搜索条件的评论对象。您可以一次使用多个过滤器,例如用户ID和状态。