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; ?>