查看目录
做个人博客的朋友,很多人发布的文章都是自己原创。所以很希望读者能够多回复,多互动,但是现在的人都比较懒,所以我们需要想法调动他们的互动积极性,比如隐藏部分文章内容,要求评论后可见,这个功能经常在别人的网站看到,今天咱也把文章隐藏内容评论后可见的代码收集到了。
1. 将下面的代码添加到主题的 functions.php 文件:
function reply_to_read($atts, $content=null) { extract(shortcode_atts(array("notice" => '<div style="text-align:center;border:1px dashed #FF9A9A;padding:8px;margin:10px auto;color:#FF6666;> <span class="reply-to-read">温馨提示: 此处内容需要 <a href="#respond" title="评论本文">评论本文</a> 后 <a href="javascript:window.location.reload();" target="_self">刷新本页</a> 才能查看!</span></div>'), $atts)); $email = null; $user_ID = (int) wp_get_current_user()->ID; if ($user_ID > 0) { $email = get_userdata($user_ID)->user_email; //对博主直接显示内容 $admin_email = "XXX@XXX.com"; //博主Email if ($email == $admin_email) { return $content; } } else if (isset($_COOKIE['comment_author_email_' . COOKIEHASH])) { $email = str_replace('%40', '@', $_COOKIE['comment_author_email_' . COOKIEHASH]); } else { return $notice; } if (empty($email)) { return $notice; } global $wpdb; $post_id = get_the_ID(); $query = "SELECT `comment_ID` FROM {$wpdb->comments} WHERE `comment_post_ID`={$post_id} and `comment_approved`='1' and `comment_author_email`='{$email}' LIMIT 1"; if ($wpdb->get_results($query)) { return do_shortcode($content); } else { return $notice; } } add_shortcode('reply', 'reply_to_read');
2. 添加短代码快捷按钮
将下面的代码也添加到主题的 functions.php 文件
//添加评论可见快捷标签按钮 function appthemes_add_reply() { ?> <script type="text/javascript"> if ( typeof QTags != 'undefined' ) { QTags.addButton( 'reply', '评论可见按钮', '【reply】','【/reply】' ); } </script> <?php } add_action('admin_print_footer_scripts', 'appthemes_add_reply' );
注意:添加短代码时【】全部替换成[]。
3. 使用方法:
在编辑文章时,选择 文本 编辑项,便会出现一个 评论可见按钮 如下图所示:
双击这个按钮,会在文本编辑器里出现如下代码:
4. 效果
注意事项:因为第一段代码设置了 博主邮箱 可见,也就是说用这个邮箱登陆的 WordPress 的账号不需要回复也就可以看到隐藏的内容,因此博主如果想看上图的效果,必须退出博主邮箱的登陆即可!