0
A
回答
0
在content.php
文件更改:
<?php if (comments_open()) : ?>
<div class="comments-link">
<?php comments_popup_link('<span class="leave-reply">' . __('Leave a reply', 'twentytwelve') . '</span>', __('1 Reply', 'twentytwelve'), __('% Replies', 'twentytwelve')); ?>
</div><!-- .comments-link -->
<?php endif; // comments_open() ?>
到
<?php
$postid = get_the_ID();
$category = get_the_category($postid);
$category = $category[0]->cat_name;
if ($category == "Pear")
{
if (comments_open()) : ?>
<div class="comments-link">
<?php comments_popup_link('<span class="leave-reply">' . __('Leave a reply', 'twentytwelve') . '</span>', __('1 Reply', 'twentytwelve'), __('% Replies', 'twentytwelve')); ?>
</div><!-- .comments-link -->
<?php endif; // comments_open()
}
?>
,并在comments.php
文件更改:
<?php if (have_comments()) : ?>
到
<?php
$postid = get_the_ID();
$category = get_the_category($postid);
$category = $category[0]->cat_name;
if ($category == "Pear")
{
if (have_comments()) :
?>
和变化:
<?php endif; // have_comments() ?>
<?php comment_form(); ?>
到
<?php endif; // have_comments() ?>
<?php comment_form();
}
?>
上面只显示那些在Pear
类职位的意见。
相关问题
- 1. 显示评论仅供特定类别
- 2. 在wordpress中的类别页面上显示评论
- 3. Facebook的评论模块不会在桌面上显示评论
- 4. 页面上的评论不会显示
- 5. 在同一页上显示评论和发布表单以添加新评论
- 6. Yelp评论不显示
- 7. 评论如何在Facebook上即时显示评论?
- 8. 在Facebook上只显示朋友的评论社交评论插件fb:评论
- 9. 在Facebook上显示图片评论而不显示网址?
- 10. Wordpress喜欢显示奇/偶评论瓦特/不同类 - jQuery?
- 11. 在WordPress主页上显示评论
- 12. 如何在tabcontent上显示评论?
- 13. 未在手机上显示Facebook评论
- 14. 在图像上显示评论
- 15. 错误不能显示在Facebook的评论所有评论
- 16. 在UITableView中显示评论
- 17. Facebook的评论小工具发表评论不显示在墙上的图像
- 18. 如何禁用Facebook评论显示在博客主页和类别页面上?
- 19. 评论不显示在wordpress 3.1
- 20. ExpressionEngine在没有评论时不显示
- 21. Facebook评论插件不显示在iframe
- 22. 在不同的页面上显示不同的类别?
- 23. 如何在同一页面上显示评论? cakephp
- 24. 在同一页面上使用jquery_ujs显示评论
- 25. 如何在同一页面上显示以前的评论
- 26. 显示删除评论上的链接
- 27. jquery只显示上次评论
- 28. 在定制的ActiveAdmin显示页面上显示评论框
- 29. Doxygen的不显示任何特别的评论
- 30. 如何在显示Wordpress评论数的计数中显示Facebook评论?