web-dev-qa-db-ja.com

投稿者カスタムフィールド投稿メタ、コード?

現在のユーザーのカスタムフィールドを取得したい場合は、次のようにします。

<?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
Robin I Knight

get_the_author_meta()!= get_user_meta()
への変更:
echo get_the_author_meta('address', $thisauthorID);

2
wyrfel