カスタムヘッダー画像のaltテキストの取得

カスタムヘッダーを使用していて、メディアライブラリのカスタムヘッダーの選択ボックスに表示される。alt テキストフィールドを ヘッダー画像の alt テキストに表示させる方法について

select-header-image

alt

get_post_meta( get_custom_header()->attachment_id, '_wp_attachment_image_alt', true ) 

caption

$attachment= get_post( get_custom_header()->attachment_id );

$attchment_caption= $attachment->post_excerpt;

description

$attachment= get_post( get_custom_header()->attachment_id );
$attachment_description= $attachment->post_content;

title

$attachment= get_post( get_custom_header()->attachment_id );
$attachment_title= $attachment->post_title;

という風にすると取得できます。

[emulsion_relate_posts]