10-17-2009, 01:35 AM
|
|
Confirmed User
Industry Role:
Join Date: Aug 2008
Location: Hollywood
Posts: 2,785
|
Quote:
Originally Posted by Jdoughs
|
Quote:
Originally Posted by fris
use a shortcode so you can set it for only the posts you want
add this to your themes functions.php file
Code:
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 '';
}
then in your post
Code:
[member]
This text will be only displayed to registered users.
[/member]
|
Thanks to both of ya :>   
|
|
|