我的环境
- PHP 5.3.2
- WordPress 3.4.1
我管理着一个 wordpress 网站,我想在 facebook 上分享一个帖子链接。一页中有一些文章(index.php)。
然后我使用以下链接显示每个帖子的标题。
<?php while (have_posts()) : the_post(); ?>
(snip)
<a href="http://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>&t=<?php the_title(); ?>" target="_blank">share</a>
(snip)
<?php endwhile; ?>
但是,我单击链接,共享标题和链接是 wordpress 本身(不是文章的)。是facebook缓存的问题吗?我该如何解决?
提前谢谢了。