WordPressの投稿したアイキャッチ画像をOGP画像に設定する方法

メモメモ。

<?php if (has_post_thumbnail()) : ?>
<meta property="og:image" content="<?php the_post_thumbnail_url(); ?>" />
<?php else: ?>
<meta property="og:image" content="アイキャッチが設定されていないときにOGPとして使う画像のURL" />
<?php endif; ?>

参考サイト:https://rilaks.jp/wordpress/eyecatch-ogp/

上記サイトが参考になりました。ありがとうございます。