甚至是帖子ID中的作者ID。我试图在单个帖子页面(在post循环之外)的侧边栏中返回作者meta(作者页面链接和头像)。做这个的最好方式是什么?我正在使用自定义函数(见下文)来返回帖子ID,但我不确定接下来要调用的函数。
function this_post_id() {
global $wp_query;
$thePostID = $wp_query->post->ID;
return $thePostID;
}
答案 0 :(得分:68)
答案 1 :(得分:18)
如果你想在循环之外使用下面的代码。
<?php
$author_id = get_post_field ('post_author', $cause_id);
$display_name = get_the_author_meta( 'display_name' , $author_id );
echo $display_name;
?>
答案 2 :(得分:0)
<?php
$field = 'display_name';
the_author_meta($field);
?>
$field
参数的有效值包括: