根据本文中的论坛fixing the read more tag problem,Mark Pasay与使用此代码段作为解决方案时遇到的困难相同。 <?php global $more; $more = 0; ?>
但作者没有详细说明如何正确使用它。我正在使用在WP管理员中调用的页面模板。 <!--more-->
已添加到文本编辑器中。这是页面模板的代码
/*
Template Name: new template
*/
get_header(); ?>
<div id="container">
<div id="content" role="main">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_front_page() ) { ?>
<h2 class="entry-title"><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php } ?>
<div class="entry-content">
<?php global $more; $more = 0; ?>
<?php the_content('read more'); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
</div><!-- #post-## -->
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #container -->
标签显示在浏览器中,但点击后,它不会显示完整的帖子。 单击时,URL将从localhost / domain.com / page /更改为localhost / domain.com / page / #more-481。 作者解释说这没有被正确使用,因为它从pageX调用pageX的内容。 &#34;此技巧仅在您尝试在pageY上显示pageX的摘录时才有效。&#34;很公平,但这是怎么做到的?