代码让wordpress留言评论可设为私密,仅管理员可查看
点击数: 2326
有一些人的评论或留言,希望只给管理者看到。
那么你就可以增加这段代码
让留言或评论内容,可设定为管理者查看。其他人无法看
- //代码让wordpress留言评论可设为私密,仅管理员可查看
- function p_content($atts, $content = null){
- global $comment;
- $author_email = $comment->comment_author_email;
- $parent_email = get_comment_author_email($comment->comment_parent);
- $user = wp_get_current_user();
- $user_id = $user->ID;
- $user_email = $user->user_email;
- if (current_user_can('create_users') || ($user_email == $parent_email && $user_id != 0) || ($author_id != 0 && $author_email == $user_email)){
- return '' . $content . '';
- }else{
- return __('***隐藏内容仅管理员可见***','tinection');
- }
- }
- #将私密评论留言功能设成简码
- add_shortcode('p', 'p_content');
- #让评论内容支持私密留言评论功能简码
- add_filter('comment_text', 'do_shortcode');