如果这个问题不适合网站,我很抱歉。在我的wordpress网站中,我想在single.php文件中添加带有动态固定链接的facebook,但没有任何插件。换句话说,当单个帖子通过single.php文件打开时,我想在帖子后添加like按钮。任何形式的帮助或建议表示赞赏。感谢。
答案 0 :(得分:1)
答案 1 :(得分: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() ?>&send=false&layout=button_count&width=85&show_faces=false&action=like&colorscheme=light&font=arial&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:21px;" allowTransparency="true"></iframe>
<?php endwhile; ?>
<?php endif; ?>
答案 2 :(得分: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).'&send=false&layout=button_count&width=85&show_faces=false&action=like&colorscheme=light&font=arial&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');