Advertisement
fauzanjeg

Remove Vote Button for Guest

Mar 1st, 2021
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1. /* Remove Vote Button for Guest */
  2. function remove_vote_for_guest() {
  3.     if ( ! is_user_logged_in() ) {
  4.     ?>
  5.         <style id="wpdiscuz" scoped>
  6.             .wpd-comment-footer .wpd-vote {
  7.                 display: none !important;
  8.             }
  9.         </style>
  10.     <?php
  11.     }
  12. }
  13.  
  14. add_action( 'init', 'remove_vote_for_guest' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement