【发布时间】:2015-02-04 13:24:14
【问题描述】:
我正在使用这个脚本来共享选项。这在 single.php 上效果很好。 问题出在主页上,我有 10 个帖子。每个帖子都有一个共享按钮。 但是当用户点击任何帖子进行分享时,只有循环中的最后一个帖子被分享
<script>
function facebook()
{
window.open("http://facebook.com/sharer.php?app_id=1433580610197489&sdk=joey&u=<?php the_permalink(); ?>","_blank","toolbar=no, scrollbars=no, resizable=yes, top=500, left=500, width=650, height=540");
}
function google()
{
window.open("https://plus.google.com/share?url=<?php the_permalink(); ?>","_blank","toolbar=no, scrollbars=no, resizable=yes, top=500, left=500, width=650, height=540");
}
function twitter()
{
window.open("http://twitter.com/home?status=<?php the_permalink(); ?>","_blank","toolbar=no, scrollbars=no, resizable=yes, top=500, left=500, width=650, height=540");
}
</script>
<a title="Facebook" onclick="facebook()" ><i class="fa fa-facebook"></i></a>
<a title="Twitter" onclick="twitter()" ><i class="fa fa-twitter"></i></a>
<a title="Google+" onclick="google()" ><i class="fa fa-google-plus"></i></a>
【问题讨论】:
-
因为每次都会覆盖函数?
标签: php wordpress facebook sharing