うさぎのイラスト

ネットアンサー55備忘録

web技術を書いていきます

ログインユーザー情報の取得

-2016年08月04日-
<?php $user = wp_get_current_user();
$UID = $user -> ID;

the_author_meta( 'last_name', $UID );
the_author_meta( 'number', $UID );
//numberは自由に定義したもの
?>
参考サイト
参考サイト2