Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
投稿のアイキャッチ画像の URL をヘッダーに追加したい。Facebook ユーザーが Wordpress ページを共有すると、ヘッダーの次のコード:
<link rel="image_src" href="FEATUREDIMAGEURL">
共有の特定の画像を返します。しかし、投稿のアイキャッチ画像の URL を追加する方法がわかりません。できますか?
このようなものはうまくいくはずですよね?
<?php if (has_post_thumbnail( $post->ID ) ): ?> <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID )); ?> <link rel="image_src" href="<?php echo $image[0]; ?>"> <?php endif; ?>