こんにちは、Wordpressの人々、search.phpの結果コンテンツを変更するには?
私は検索結果の出力を部品の下のコード<div class="entry"><?php the_content(); ?></div>
でどのように変更できるか尋ねたがっていますか?
ページ、投稿、カテゴリのタイトルとテキストのみを表示します。しかし、テキストはまた、表示する500 Charatersのようなだけでなく、 "もっと読む"リンク。
これを行う方法はありますか?助けてくれてありがとう。
<div id="main">
<?php if (have_posts()) : ?>
<p class="info">Ihre Suchergebnisse für: <strong><?php echo $s ?></strong></p>
<?php while (have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<div class="entry">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<p align="center"><?php next_posts_link('« Ältere Einträge') ?> | <?php previous_posts_link('Neuere Einträge »') ?></p>
<?php else : ?>
<div class="no-found">
<h3>Ups?! Wir konnten unter dem Begriff <span>"<?php echo $s ?>"</span> leider nichts finden.</h3>
<p>Kehren Sie bitte <a href="<?php bloginfo('url'); ?>">zur Startseite</a> zurück.</p>
</div>
<?php endif; ?>
</div><!-- main -->
<div id="sidebar">
<?php get_sidebar(); ?>
</div><!-- sidebar -->
に答えることができますが、この質問は前に頼まれているかどうかを確認するために見たことがありますか? http://stackoverflow.com/questions/3147898/how-to-set-character-limit-on-the-content-and-the-excerpt-in-wordpressやhttp://stackoverflow.com/questions/などです。 13595544/how-to-custom-the-website-on-the-homepageをカスタマイズするには?rq = 1 – Daz