0

不确定这里出了什么问题,因为我的问题到处都找到了相同的解决方法。阅读更多标签没有显示在我的页面上,它会拉入最新的帖子。我研究过只需添加此代码即可解决此问题。

<?php
global $more;
$more = 0;
?>
//The code must be inserted ahead of the call to the content

<?php the_content('Continue Reading'); ?>

但是我似乎无法让它工作。任何其他想法或者我只是使用错误的代码,可以引用!这是我的页面的一个想法,任何有助于确定在哪里插入代码的帮助将不胜感激。非常感谢你们!

 get_header(); ?>

 <div id="primary" class="site-content">
 <div id="content" role="main">
   <?php while ( have_posts() ) : the_post(); ?>
      <?php if ( has_post_thumbnail() ) : ?>
     <div class="entry-page-image">
    <?php the_post_thumbnail(); ?>
    </div><!-- .entry-page-image -->
    <?php endif; ?>

    <?php get_template_part( 'content', 'page' ); ?>

        <?php endwhile; // end of the loop. ?>

    </div><!-- #content -->
</div><!-- #primary -->

<?php get_sidebar( 'front' ); ?>
<?php get_footer(); ?>
4

1 回答 1

0

试试 this.code.check 你是否在管理员中为页面和帖子提供了插入更多标签

get_header(); ?>

 <div id="primary" class="site-content">
 <div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
  <?php if ( has_post_thumbnail() ) : ?>
 <div class="entry-page-image">
<?php the_post_thumbnail(); ?>
</div><!-- .entry-page-image -->
<?php endif; ?>

<?php 
        global $more;
    $more = 0;

 get_template_part( 'content', 'page' ); ?>

    <?php endwhile; // end of the loop. ?>

 </div><!-- #content -->
</div><!-- #primary -->

<?php get_sidebar( 'front' ); ?>
<?php get_footer(); ?>
于 2013-08-22T10:42:56.840 回答