View Single Post
Old 10-17-2009, 01:35 AM  
Robocrop
Confirmed User
 
Robocrop's Avatar
 
Industry Role:
Join Date: Aug 2008
Location: Hollywood
Posts: 2,785
Quote:
Originally Posted by Jdoughs View Post
Quote:
Originally Posted by fris View Post
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 :>
Robocrop is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote