2016-10-27 11 views
0

こんにちは、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&uuml;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('&laquo; &Auml;ltere Eintr&auml;ge') ?> | <?php previous_posts_link('Neuere Eintr&auml;ge &raquo;') ?></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 --> 
+0

に答えることができますが、この質問は前に頼まれているかどうかを確認するために見たことがありますか? 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

答えて

0

は、私はおそらくだけではなく、the_excerpt()からthe_content()を変更したい:

これはsearch.phpのための私のコードです。これはあなたが望むものにかなり近づくでしょう。

0

the_contentのthe_excerpt()関数インスタントを使用し、read more(permalink)のリンクを使用する必要があります。

ここでコード:

<div class="entry"> 
     <?php the_excert(); ?> 
     <a href="<?php the_permalink(); ?>">Read More</a> 
     </div> 

も、あなたがこの質問をたどるとhere

おかげ

関連する問題