問題
Wordpresで記事のアイキャッチ画像のURLを取得するには?
解決策
「get_the_post_thumbnail_url()」でサムネイルのURLを取得する。
記事に登録したサムネイルを表示させる
WordPressで記事のサムネイルを表示させる方法をよく忘れてしまうので、ここに残しておこうと思います。
記事のサムネイルのURLを取得する
記事のサムネイルのURLを、以下の記述で取得することができます。
$thumb = get_the_post_thumbnail_url( get_the_ID(), 'full' );
記述例
実際に使用する記述例は以下になります。
<?php
if(has_post_thumbnail(get_the_ID())):
$thumb = get_the_post_thumbnail_url( get_the_ID(), 'full' );
?>
<img src="<?php echo $thumb; ?>" alt="">
<?php
endif;
?>
参照
【get_the_post_thumbnail_url() | Function | WordPress Developer Resources】
https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_url/
コメント