Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter charliesgold

    (@charliesgold)

    I have tried utilizing this in my theme loop to no avail:

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

    Thread Starter charliesgold

    (@charliesgold)

    I have resolved the issue by placing the following in to my theme’s loop:

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

    I had to do this for the frontpage.php as well since this theme utilizes multiple page formats.

    Plugin Author Seth Carstens

    (@sethcarstens)

    looks like you solved your issue. No its not something the plugin can control, this is something your theme controls. The plugin simply allows you to sticky posts easier from the post listing screen in the wp-admin.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Full post versus universal settings’ is closed to new replies.