检索页面标题和描述的代码(或循环)部分是什么?

时间:2011-01-25 作者:janoChen

检索页面标题和描述的循环代码是什么?

我检查了页面内的代码。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 ); ?>

我看起来与检索主要(博客)帖子的循环相同。

有什么区别?

哪个部分检索当前页面的标题和内容?

1 个回复
最合适的回答,由SO网友:Rarst 整理而成

像往常一样-the_title()the_content(). 贴子页面和页面页面在内容的数量和类型上有所不同,但是main Looptemplate tags 基本相同。

结束

相关推荐

Custom theme - pages in menu

我很高兴有机会成为这个社区的一员。最近我决定开始学习wordpress和主题构建,所以这是我在这里的第一篇帖子。我在网上阅读了一些关于如何构建自定义主题的教程。我的问题是,如何构建自定义菜单?例如,我在psd上有模板,我将其切片,然后我想将其集成到wordpress上。我支持先构建页面。那么,如何使用自定义css/xhtml构建菜单,使每个链接都指向我创建的页面?也许描述不清楚,但我想你明白我的意思。提前感谢。