WordPress添加设置回复可见小工具与方式

WordPress添加设置回复可见

很多时候自己建站,很多的资源想给自己注册的会员使用,就可以通过设置回复可见的方式来处理!下面我们介绍通过代码的方式来实现这个功能!

步骤一:找到functions.php文件

找到主题中的functions.php文件,位置位于根目录-www-wwwroot-自己定义的域名-wp-content-themes-你的主题-functions.php

步骤二:添加代码

利用Adobe Dreamweaver软件打开functions.php文件(没有Adobe Dreamweaver的可以通过本站的常用软件里面下载),直接把下面的代码复制到打开functions.php文件的末尾,代码中的xinyewl@qq.com请改为你的管理员邮箱,直接对该邮箱的用户展示内容。

//评论可见
function -_to_read($atts, $content=null) {
        extract(shortcode_atts(array("notice" => '<p class="--to-read">此处内容需要<a href="#respond" title="评论本文">评论</a>后才能查看.</p>'), $atts));
        $email = null;
        $user_ID = (int) wp_get_current_user()->ID;
        if ($user_ID > 0) {
            $email = get_userdata($user_ID)->user_email;
            $admin_email = "xinyewl@qq.com";
            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('-', '-_to_read');
步骤二:使用方式

在可视化或者编辑框下输入短代码 [--]隐藏的内容[/--] ,中间可以改为你要隐藏的内容。(特别注意代码包含[ ],但是不包含-,使用的时候去掉-,因为我的这个网站已经使用的隐藏代码,如果写正确的代码上去会直接隐藏掉。)

新媒体笔记,人人都能做属于自己的宣传媒体,网站入门搭建、影视制作、平面UI设计、美图摄影一站式入门教学……
新媒体笔记 » WordPress添加设置回复可见小工具与方式

发表评论

提供最优质的资源集合

立即查看 了解详情