記事のサムネイル画像のURLを取得する方法。
<?php
$post_id = 326;
echo get_the_post_thumbnail_url($post_id);
これでOK。
実行すると下記のような結果を得れます。
$ test.php
https://tarovlog.com/wp-content/uploads/2021/02/sample.png
画像のサイズを変えたいとき
任意のサイズの画像を取得したい場合、第二引数にサイズを指定することで実現できます。
get_the_post_thumbnail_url( $post = null, $size = 'post-thumbnail' )
詳細は公式ドキュメントを確認↓