既然你现在有了作者的ID,你可以使用get_the_author_meta
要知道他们的名字。借用上述代码:
$author_id = get_post_field(\'post_author\', $product_page->ID );
//get the author\'s display name
$author_name = get_the_author_meta( \'display_name\', $author_id );
echo \'<div class="library-author">\' . $author_name . \'</div>\';
而且,由于您有作者id,因此可以使用
get_avatar( $author_id );
它返回一个img元素。您必须在适当的位置进行回音,例如:
echo get_avatar( $author_id );
将导致
<img src="http://some-url.com/some-image.gif">
请参阅get\\u avatar的文档,以查看可以传递给它的可选参数。http://codex.wordpress.org/Function_Reference/get_avatar