web-dev-qa-db-ja.com

カテゴリアーカイブの閲覧または検索時に「more」タグが表示されない

私のウェブサイトはほぼ完成しましたが、1つの問題に出くわしました:あなたがカテゴリーのアーカイブを見るか、または検索をするとき、「もっと」(または「続きを読む」)リンク/タグは現れません。ホームページでは大丈夫です。

主にカテゴリの投稿ビットについて - 任意の助けがいただければ幸いです。

乾杯します。

1
Will Richardson

このコーデックスを確認し、その中の情報が役立つかどうかを確認します。 http://codex.wordpress.org/Customizing_the_Read_More

1
Tara

Michaelが言ったように私の 'loop.php'ファイルを見たので、私は置き換えました

<div class="entry-summary">
            <?php the_excrept(); ?></div><!-- .entry-summary -->

あり

<div class="entry-summary">
            <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div><!-- .entry-summary -->

出現するたびに(私の場合は2回)

乾杯、意志

0
Will Richardson

何らかの理由で、私がここや他のサイトで見つけた解決策は私のためにうまくいきませんでした。しかし、私は非常に単純な解決策を見つけました、 あなたはそれについてここで読むことができます

<div class="entry">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <?php the_title(); ?></a>
    <?php the_excerpt(); ?><em><a href="<?php the_permalink() ?>" rel="bookmark" title="Link naar volledig artikel"><br/>Lees hier verder...</a></em>
    <p><small><?php the_author(); ?>, <?php the_time('j F Y') ?></small></p>
</div>

Category.phpファイルで使用しましたが、archive.phpまたはsearch.phpでもまったく同じように機能します。

0
Boris