• rahy

    (@rahy)


    Hi,
    Is there any way I can limit non-member to excerpt only? Perhaps by limiting “Read more” to member only? If so, how do I do it?
    Or is there any better way?
    Thank you.

Viewing 1 replies (of 1 total)
  • Joseph

    (@jpe24524)

    In your index.php, replace

    <?php the_content('Read more'); ?>

    with

    <?php
    if (is_user_logged_in())
    	the_content('Read more');
    else
    	the_excerpt();
    ?>

    Logged in users will get the full/read more content while others get the excerpt.

Viewing 1 replies (of 1 total)
  • The topic ‘limit non-member to excerpt only’ is closed to new replies.