这些信息不必是静态的。下面是一个示例:
<meta property="og:title" content="<?php if ( is_single() ) { wp_title(); } else { bloginfo(\'name\'); } ?>" />
<meta property="og:type" content="blog" />
<meta property="og:url" content="<?php echo get_permalink() ?>" />
<meta property="og:site_name" content="<?php bloginfo(\'name\') ?>" />
图像有点骗人。我喜欢使用特色图片,如果它是可用的,个人。为此,请将其与opengraph数据一起添加:
<?php foreach (get_representative_images() as $image_url): ?>
<meta property="og:image" content="<?php echo $image_url ?>" />
<?php endforeach; ?>
。。。并将其添加到主题的功能中。php。。。
function get_representative_images() {
global $post;
$images = array(\'http://www.your.com/default/image.jpg\');
if ( has_post_thumbnail($post->ID) ) { // check if the post has a Post Thumbnail assigned to it.
$image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), \'thumbnail\');
array_unshift($images, $image_url[0]);
}
return $images;
}
干杯~