在单个页面上隐藏/显示注释
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.
function custom_jquery() { ?> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script> <script type="text/javascript"> $(function(){ $("div#comments").hide(); $("p#show_comments > a").click(function(){ $("div#comments").show(); }); }); </script> <?php } add_action('wp_head', 'custom_jquery'); function show_comments() { if (is_single()) { echo '<p id="show_comments"><a href="#comments">Show Comments</a></p>'; } } add_action('thesis_hook_after_post', 'show_comments', 99);
以上是关于在单个页面上隐藏/显示注释的主要内容,如果未能解决你的问题,请参考以下文章
php 在单个产品页面上的产品名称下显示产品供应商的“销售者:供应商名称”并隐藏原始产品