• hughmacken

    (@hughmacken)


    How do I find the permalink for post excerpts? Is there a permalink? I’d like to post a link to excerpts of my blog posts on twitter rather than a link to the full post, which I want to restrict to registered users only.

Viewing 1 replies (of 1 total)
  • theApe

    (@theape)

    This might help as an alternative option.

    <?php
    if ( is_user_logged_in() ) {
        the_content();
    } else {
        the_excerpt();
    }
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘How do I find the permalink for post excerpts?’ is closed to new replies.