juhu,
hallo gemeinde, ich möchte gern bei meinen suchergebnissen den gesammten beitrag (wenn es mehrere suchergebnisse gibt auch gern 3 oder 4) anzeigen lassen. momentan spuckt mir meine search.php immer nur die titel aus. was muss ich umschreiben damit ich alles angezeigt bekomme.
PHP
<?php
/*suchfunktion*/
?>
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><span><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></span></h2>
<div id="post" class="section">
<span>
<p><?php the_content_rss('', TRUE, '', 50); ?></p>
<div id="meta">
erstellt am <?php the_time('M j, Y') ?> in <?php the_category(', ') ?>
</div>
</span>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class="post">
<h2><span>sorry leider konnte ich nichts finden</span></h2>
<div id="post" class="section">
<span>
<p>You seem to have found a mis-linked page or search query with no associated results. Please trying your search again. If you feel that you should be staring at something a little more concrete, feel free to email the author of this site or browse the archives.</p>
</span>
</div>
</div>
<?php endif; ?>
<?php get_footer(); ?>
Alles anzeigen