代碼讓wordpress留言評論可設為私密,僅管理員可查看
點擊數: 2324
有一些人的評論或留言,希望只給管理者看到。
那麼你就可以增加這段代碼
讓留言或評論內容,可設定為管理者查看。其他人無法看
- //代碼讓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');