Advertisement
borkolivic

Vip content (logged users only)

Nov 28th, 2019
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. function vip_user_shortcode($atts, $content = null)
  2. {
  3.     if (is_user_logged_in() && !is_null($content) && !is_feed()) {
  4.         return $content;
  5.     }
  6. }
  7. add_shortcode('vip_only', 'vip_user_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement