Tuesday, March 19, 2024

Hide a part from your content from non-registred visitors

- Advertisement -spot_img
- Advertisement -Traffic Analysts Tool

Trying to get new “members” to his WordPress blog is not always easy. To try to push visitors to register and join your blog, you might resort to drastic measures as to conceal a portion of text.
Or, another scenario, you might want to reserve a portion of text only to the most loyal visitors: your members. This can be done without a plugin and even here the solution!

membersonly

First, copy and paste the following code in your functions.php file (which I repeat must be in the file .php on your WordPress theme):

add_shortcode( 'membre', 'member_check_shortcode' );

function member_check_shortcode( $atts, $content = null )
{
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() )
return $content;
return '';
}

Now, when you write a new article, add the new tag

- Advertisement -Traffic Analysts Tool
[Member] [/ member]

to show the text only to your blog members.

- Advertisement -
Latest news
- Advertisement -



Liquid Web Storm VPS
Related articles
- Advertisement - Traffic Analysts Tool