• Resolved yummz

    (@yummz)


    Hello,

    I need to write a code that allows be to show excerpts of syndicated articles but the full content of self-written posts. This is how far I got but it isn’t working.

    <?php if (is_syndicated()) : ?>
    <?php the_content(); ?>
    <?php else : ?>
    <?php the_excerpt(); ?>
    <?php endif; ?>

    Any ideas?

Viewing 1 replies (of 1 total)
  • Thread Starter yummz

    (@yummz)

    I solved the problem. The code should’ve been:

    <?php if (is_syndicated()) : ?>
    <?php the_excerpt(); ?>
    <?php else : ?>
    <?php the_content(); ?>
    <?php endif; ?>

Viewing 1 replies (of 1 total)

The topic ‘Help with FeedWordPress’ is closed to new replies.