WordPress and buddypress programming

Display content for logged in users only

Viewing 0 reply threads
  • Author
    Posts
    • #789
      michael mc
      Keymaster
      @michael
      add_shortcode( 'member', 'member_check_shortcode' );
      function member_check_shortcode( $atts, $content = null ) {
      	 if ( is_user_logged_in() && !is_null( $content ) && !is_feed() )
      		return $content;
      	return '';
      }

      Short code

      member
      This is members-only content.
      /member

Viewing 0 reply threads
  • You must be logged in to reply to this topic.