我在 footer.php
中使用此代码 <?php
if(is_single()):
$post = $wp_query->post;
$pID = $post->ID;
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "single-post-thumbnail");
$imgURL = "" . $image[0];
$urlstring = get_permalink();
?>
上面的代码是我用来调用它们的代码。
下面这个是出现图像问题的那个。
<div id="fb-root"></div>
<script>
function graphPublish(){
setTimeout(
function(){
var title = '<?php echo $title ?>';
var urlstring = '<?php echo $urlstring ?>';
var picture = '<?php echo $imgURL ?>';
FB.api('/me/feed', 'post', { message: title, link:urlstring, link:urlstring, picture:picture, name:title }, function(response) {
});
},
8000);
}
我无法理解的是,为什么此脚本会阻止帖子中的图片,只能在帖子中显示。
他们在那里,但他们只是没有出现。