facebook 建议在您的页面中放置一个 :og 元标记,但我需要为每个 WordPress 帖子/单个动态创建它 - 但在标题中我还没有在循环中 - 我如何获取页面/单个缩略图,而不是循环了吗?:)
我最终得到:
<?php global $post; $id = $post->ID; ?>
<meta name="og:image" content="<?php
$thumbieLink = wp_get_attachment_url( get_post_thumbnail_id($id) );
if( $thumbieLink!==false && $thumbieLink!="" ) echo $thumbieLink;
else echo "http://IfNoThumbNailIsAvailable.com/default.jpg";
?>" />
我使用与标准不同的元标记的原因是因为我不想将 XHTML 文档类型添加到我的网站 - 请参阅http://code.adonline.id.au/valid-meta-tags-for-facebook-link-缩略图/了解更多信息 :) XML 很棒,XHTML 很邪恶。