Advertisement
verygoodplugins

Untitled

Aug 1st, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. function wpf_disable_comments() {
  2.  
  3.     if ( function_exists( 'wp_fusion' ) && ! wp_fusion()->user->has_tag( 'Tag Name' ) ) {
  4.         return false;
  5.     } else {
  6.         return true;
  7.     }
  8.  
  9. }
  10.  
  11. add_filter( 'comments_open', 'wpf_disable_comments' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement