Moin moin,
hier'm... ich wollte Beiträge so darstellen:
- nur die Überschrift mit Link zur single.php
- als Liste untereinander
Soll heißen so:
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
Jetzt sieht mein Quelltext so aus (bringt aber nicht den erhofften Effekt:
PHP
<div class="post">
<h3>Article</h3>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php echo _e('Read the Article', 'MI'); ?>"><?php the_title(); ?></a>
</div>
Würd ja eine Liste mit <ul><li> denken, aber hab grad keinen Plan, wie man das in den Loop bringt *kopfkratz... Jemand eine Idee?