作者自定义字段发布元数据,代码?

时间:2011-02-22 作者:Robin I Knight

如果我想获得当前用户的自定义字段,我会使用类似的内容。

<?php echo get_user_meta($user_info->ID,\'address_line_2\',true);?>

然而,这次我想要作者,所以我尝试了以下的多个版本,但都没有用。

<?php 
$thisauthorID = get_the_author_ID();

echo get_the_author_meta($thisauthorID,\'address\',true)
        ;?>
有什么想法吗?

非凡的

1 个回复
最合适的回答,由SO网友:wyrfel 整理而成

get_the_author_meta() != get_user_meta().
更改为:
echo get_the_author_meta(\'address\', $thisauthorID);

结束

相关推荐

如何从wp_list_Authors中排除特定作者

我想让作者像往常一样从wp_list_authors() 但我知道有几个我也想从名单中排除。有办法吗?谢谢