很多时候自己建站,很多的资源想给自己注册的会员使用,就可以通过设置回复可见的方式来处理!下面我们介绍通过代码的方式来实现这个功能!
找到主题中的functions.php文件,位置位于根目录-www-wwwroot-自己定义的域名-wp-content-themes-你的主题-functions.php
利用Adobe Dreamweaver软件打开functions.php文件(没有Adobe Dreamweaver的可以通过本站的常用软件里面下载),直接把下面的代码复制到打开functions.php文件的末尾,代码中的xinyewl@qq.com请改为你的管理员邮箱,直接对该邮箱的用户展示内容。
//评论可见
function reply_to_read($atts, $content=null) {
extract(shortcode_atts(array("notice" => '<p class="reply-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('reply', 'reply_to_read');
在可视化或者编辑框下输入短代码 [reply-]隐藏的内容[/reply-] ,中间可以改为你要隐藏的内容。(特别注意代码包含[ ],但是不包含-,使用的时候去掉-,因为我的这个网站已经使用的隐藏代码,如果写正确的代码上去会直接隐藏掉。)
原文链接:https://imacos.top/2019/06/21/1414/,转载请注明出处。
评论0