1

如果这个问题不适合该网站,我很抱歉。在我的 wordpress 网站中,我想在 single.php 文件中添加带有动态永久链接的 facebook like 按钮,但没有任何插件。换句话说,当通过 single.php 文件打开单个帖子时,我想在帖子之后添加点赞按钮。任何形式的帮助或建议表示赞赏。谢谢。

4

3 回答 3

1

这可能有效

于 2012-04-22T19:19:45.287 回答
1

single.php循环内的文件中

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
....
<?php the_content(); ?>
<iframe src="http://www.facebook.com/plugins/like.php?href=<?php the_permalink() ?>&amp;send=false&amp;layout=button_count&amp;width=85&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:21px;" allowTransparency="true"></iframe>
<?php endwhile; ?>
<?php endif; ?>

你可以读这个。

于 2012-04-22T19:33:58.020 回答
0

您可以将以下代码添加到functions.php中。

      function setFacebookLike($content) {
  global $post;
      if($post->post_type=="post") {

          $content.= '<iframe src="http://www.facebook.com/plugins/like.php?href='.get_permalink($post->ID).'&amp;send=false&amp;layout=button_count&amp;width=85&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:21px;" allowTransparency="true"></iframe>';
      }
      return $content;
  }
  add_filter ('the_content', 'setFacebookLike');
于 2012-04-22T19:57:04.060 回答