2024年06月14日
WP関数:the_custom_header_markup()
この関数の説明
WP関数の the_custom_header_markup() は、[外観→カスタマイズ]の[ヘッダメディア]の中の動画を表示する関数です。
関数
the_custom_header_markup()
オプション
ありません
返り値
ありません
事例
①ヘッダービデオが設定されていたら表示する。
<?php if(has_header_video()):?><!-- videoが設定されている場合 --> <?php the_custom_header_markup();?> <!-- 動画表示 --> <?php endif;?>
関連情報
関連関数は テーマのカスタマイズ関連関数 を参照してください。