阅读更多标签无法在页面上工作 - WordPress

时间:2013-08-22 09:54:39

标签: wordpress

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

<?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(); ?>

1 个答案:

答案 0 :(得分:0)

尝试this.code.check您是否在admin中为页面添加了更多标记并发布了

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(); ?>