在单个页面上隐藏/显示注释

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在单个页面上隐藏/显示注释相关的知识,希望对你有一定的参考价值。

This is a bit of jQuery within a php function that you can dump into your Thesis custom_functions.php file to hide comments upon page load and add a link to show them.
  1. function custom_jquery() { ?>
  2. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>
  3. <script type="text/javascript">
  4. $(function(){
  5. $("div#comments").hide();
  6. $("p#show_comments > a").click(function(){
  7. $("div#comments").show();
  8. });
  9. });
  10. </script>
  11. <?php }
  12. add_action('wp_head', 'custom_jquery');
  13.  
  14. function show_comments() {
  15. if (is_single()) {
  16. echo '<p id="show_comments"><a href="#comments">Show Comments</a></p>';
  17. }
  18. }
  19. add_action('thesis_hook_after_post', 'show_comments', 99);

以上是关于在单个页面上隐藏/显示注释的主要内容,如果未能解决你的问题,请参考以下文章

如何在滚动列表视图上显示/隐藏底部导航视图?

如何禁用/隐藏 woocommerce 类别页面?

php 在单个产品页面上的产品名称下显示产品供应商的“销售者:供应商名称”并隐藏原始产品

在 MkMapView 上隐藏、显示注释

在 WooCommerce 的单个产品页面上隐藏某些产品的产品库存

在片段替换上显示/隐藏 Android 软键盘