我使用$terms = get_terms( 'ad_tags');
来显示自定义postype的标签,效果很好。现在我想显示在帖子上使用它们的用户。我正在编写一个小插件。例如
foreach ( $terms as $term ){
$term->name // tag and users who used them
}
你是怎么做到的?
答案 0 :(得分:0)
是的,您可以获取按特定帖子ID创建帖子的用户详细信息。
首先,您可以使用$author_id=$post->post_author;
然后,您可以使用author_id通过此功能获取用户的其他信息:get_the_author_meta( string $field = '', int $user_id = false )
您可以将first_name
,last_name
,email
作为$field
传递,以获取用户信息。
这是获取特定帖子的用户信息的方式。
我希望这对你有所帮助。
感谢。