■Simple Local Avatarsプラグイン使用
■Advanced Custom Fields(アドバンスカスタムフィールドを使う)
フィールドグループに
prof_imgs
宛先をユーザーページに
出力1
<?php $prof_photo_id = get_the_author_meta('prof_imgs'); $prof_photo_img = wp_get_attachment_image_src($prof_photo_id, 'event-sam'); echo '<img src="' .$prof_photo_img[0] . '">' ?>
出力2
<?php $title= get_the_title(); echo wp_get_attachment_image(get_the_author_meta('prof_imgs'),event-sam,0,array('alt'=>$title,'title'=>$title)); ?>