在wordpress中阅读更多内容并没有带我到完整的帖子

时间:2015-12-26 22:55:07

标签: wordpress

你好每一个我想要你的帮助我的问题是当我在wordpress上使用the_excerpt并点击阅读更多它没有给我完整的文章它给我文章页面但文字切割和阅读更多

他是 content.php

的代码
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <header class="entry-header">
        <?php
            if ( is_single() ) {
                the_title( '<h1 class="entry-title">', '</h1>' );
            } else {
                the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
            }

        if ( 'post' === get_post_type() ) : ?>
        <div class="post-details">
        <i class="fa fa-user"></i> <?php the_author( ); ?>
            <i class="fa fa-clock-o"></i><?php the_date( ); ?>
            <i class="fa fa-folder-open"></i> <?php the_category(' ,' ); ?>
            <i class="fa fa-tags"></i> <?php the_tags( ); ?>
            <div class="post-comment-tags">
                <a href="<?php comments_link( ); ?>"><i class="fa fa-comments"></i><?php comments_number(0,1,'%' ); ?></a>
            </div>
        </div><!-- postdetails -->
        <?php
        endif; ?>
    </header><!-- .entry-header -->
    <?php if(has_post_thumbnail()){ ?>
    <div class="post-image">
        <?php the_post_thumbnail('large'); ?>
    </div> <!-- postimage -->

    <?php } ?>

    <div class="post-extrait">
    <?php the_excerpt(); ?>
    </div>

</article><!-- #post-## -->

从我的桌面进行屏幕截图   http://i.stack.imgur.com/6SYId.jpg   http://i.stack.imgur.com/XKjiI.jpg

1 个答案:

答案 0 :(得分:0)

我在内容页面中看到您的问题是它没有显示您正在使用的完整内容

<?php the_excerpt(); ?>

你应该使用

<?php the_content(); ?>