Wordpress / PHP - 如何显示页面描述

时间:2012-05-23 12:38:55

标签: php wordpress wordpress-theming

我是wordpress中模板编辑的新手,我正试图让我的网站上显示一个页面描述,但它没有出现。我试图显示描述的URL在这里:

http://fourwallsla.com/category/the-neighborhood/east-side/

我在wordpress中附上了页面描述的屏​​幕截图。它似乎正在使用归档模板(为什么它不使用页面模板?)。

以下是存档模板的一些代码:

<div class="main">
<?php if (have_posts()) : $first = true; ?>
    <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
    <?php /* If this is a category archive */ if (is_category()) { ?>
      <h1><?php single_cat_title(); ?></h1>
    <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
      <h1><?php single_tag_title(); ?></h1>
    <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
      <h1><?php echo get_the_time('F jS, Y'); ?></h1>
    <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
      <h1><?php echo get_the_time('F, Y'); ?></h1>
    <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
      <h1><?php echo get_the_time('Y'); ?></h1>
    <?php /* If this is an author archive */ } elseif (is_author()) { ?>
      <h1><?php _e( 'Author Archive', 'gray_white_black' ); ?></h1>
    <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
      <h1><?php _e( 'Blog Archives', 'gray_white_black' ); ?></h1>
    <?php } ?>

    <ul class="post-list">
    <?php while (have_posts()) : the_post();

其中,在上面的代码中,the_post()恰当地指的是页面上显示的类别中的主页列表的内容。但是如何获取页面本身的the_post(),如截图所示?感谢。

enter image description here

1 个答案:

答案 0 :(得分:1)

它正在使用archive.php模板,因为您正在检索该类别中的所有帖子 - “在邻居中”&amp; '东边'。如果您希望它使用默认的page.php,则必须在Wordress中发布页面。 要打印说明(“测试说明”)或帖子内容,请在以下后添加<?php the_content(); ?><?php the_excerpt(); ?>

<?php while (have_posts()) : the_post();