检索页面标题和描述的循环代码是什么?
我检查了页面内的代码。Starkers主题的php(我想与TwentyTen主题相同):
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php if ( is_front_page() ) { ?>
<h2><?php the_title(); ?></h2>
<?php } else { ?>
<h1><?php the_title(); ?></h1>
<?php } ?>
<?php the_content(); ?>
<?php wp_link_pages( array( \'before\' => \'\' . __( \'Pages:\', \'twentyten\' ), \'after\' => \'\' ) ); ?>
<?php edit_post_link( __( \'Edit\', \'twentyten\' ), \'\', \'\' ); ?>
<?php comments_template( \'\', true ); ?>
我看起来与检索主要(博客)帖子的循环相同。
有什么区别?
哪个部分检索当前页面的标题和内容?