我是 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(),如屏幕截图所示?谢谢。