为图像定义这样的开放图元标记。
global $post;
$postImg = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 1200, 9999 ), false );
<meta property="og:image" content="<?php echo $postImg[0]; ?>"/>
<meta property="og:image:width" content="<?php echo $postImg[1]; ?>"/>
<meta property="og:image:height" content="<?php echo $postImg[2]; ?>"/>
我在我的网站上看到了这一点来源:
<meta property="og:image" content="http://elpace.co/event-image.jpg"/>
<meta property="og:image:width" content="2953"/>
<meta property="og:image:height" content="4134"/>
但这在facebook的Open Graph调试器中(刮刀看到的)。
<meta property="og:image" content="">
<meta property="og:image:width" content="">
<meta property="og:image:height" content="">
谢谢你