服务器与VPS
促销优惠信息

纯代码实现WordPress文章隐藏内容评论可见

查看目录
文章目录隐藏
  1. 1. 将下面的代码添加到主题的 functions.php 文件:
  2. 2. 添加短代码快捷按钮
  3. 3. 使用方法:
  4. 4. 效果

做个人博客的朋友,很多人发布的文章都是自己原创。所以很希望读者能够多回复,多互动,但是现在的人都比较懒,所以我们需要想法调动他们的互动积极性,比如隐藏部分文章内容,要求评论后可见,这个功能经常在别人的网站看到,今天咱也把文章隐藏内容评论后可见的代码收集到了。

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. 使用方法:

在编辑文章时,选择 文本 编辑项,便会出现一个 评论可见按钮 如下图所示:
纯代码实现WordPress文章隐藏内容评论可见
双击这个按钮,会在文本编辑器里出现如下代码:纯代码实现WordPress文章隐藏内容评论可见

4. 效果

纯代码实现WordPress文章隐藏内容评论可见
注意事项:因为第一段代码设置了 博主邮箱 可见,也就是说用这个邮箱登陆的 WordPress 的账号不需要回复也就可以看到隐藏的内容,因此博主如果想看上图的效果,必须退出博主邮箱的登陆即可!

楚狂人 » 纯代码实现WordPress文章隐藏内容评论可见

相关推荐

  • 暂无文章

评论 抢沙发

  • (必填)
  • (必填)

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏