点击我想打开一个弹出窗口,允许访问者通过FACEBOOk分享我的博客。一切都很好,但问题是我无法获得当前文章的固定链接。如何在JavaScript中添加php?
// Replace the images with the following div and pin button
$button_div = '<div class="plugin">
<div class="imgshare">
<div class="postfb">
<a onclick="popItUp()">
<img src="http://www.example.com/wp-content/facebook.png" width="45px" />
</a>
</div>
</div>
<div class="demo"><img$1src="$2.$3" $4 width="$5" height="$6" /></div>
</div>';
// Replace the images with a containing div with a pin button on the image
$content = preg_replace( $pattern, $button_div, $content );
return $content;
}
}
<script>
function popItUp(url) {
var newWindow = window.open('http://www.facebook.com/share.php?u=<?php the_permalink(); ?>&title=<?php the_title(); ?>', 'name', 'height=615,width=475,scrollbars=yes');
if (newWindow.focus) {
newWindow.focus();
}
}
</script>
答案 0 :(得分:1)
the_permalink()
仅适用于&#34;循环&#34;。
我假设此代码不在主post循环中,在这种情况下,您需要使用get_permalink()
并传递正在查看的帖子的ID。
您可以通过$wp_query
;
function getPostID(){
$post = $wp_query->post;
return $post->ID;
}
现在你可以使用:
<?php echo get_permalink(getPostID()) ?>