/ Published in: PHP
WordPress shortcode: Display content to registered users only
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
add_shortcode( 'member', 'member_check_shortcode' ); function member_check_shortcode( $atts, $content = null ) { return $content; return ''; } Once done, you can add the following to your posts to create a portion or text (or any other content) that will be only displayed to registered users: [member] This text will be only displayed to registered users. [/member]