Conditional tags in WordPress

You would like to know what type of page you are on? A list view or single view? Conditional Tags

<?php if (!empty($post->post_excerpt) &! is_single()) : ?>
        <?php the_excerpt(); ?>
        <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Read the full post »</a></p>
<?php else : ?>
        <?php the_content(__('(more...)')); ?>
<?php endif; ?>

Weblinks

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.