Advertisement
verygoodplugins

Untitled

Aug 24th, 2021
1,470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function marlon_test() {
  2.  
  3.     if ( wp_fusion()->user->has_tag( 'homework-teacher', get_current_user_id() ) ) {
  4.         return 'HAS IT';
  5.     }
  6.  
  7.     if ( ! wp_fusion()->user->has_tag( 'homework-teacher', get_current_user_id() ) ) {
  8.         return 'DOES NOT HAVE IT';
  9.     }
  10.  
  11. }
  12.  
  13. add_shortcode( 'marlon_test', 'marlon_test' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement