删除您的插件并使用它,Facebook 分享帖子必须添加元。请尝试,把function.php
add_action('wp_head','add_meta_function');
function add_meta_function(){
if(is_single()){
global $post;
echo '<meta property="og:url" content="'.get_permalink().'" />';
echo '<meta property="og:image" content="'.home_url().'/wp-content/uploads/2015/05/4569952.png" />';
echo '<meta property="og:title" content="'.get_the_title().'" />';
echo '<meta property="og:description" content="'.substr($post->post_content,0,100).'" />';
}
}
把你的单页和列表页。
<a href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink();?>" target="_blank">
Share
</a>