我是新來的WordPress的模板編輯,我試圖讓頁面描述顯示在我的網站上,但它並沒有出現。我試圖去顯示說明的URL是在這裏:WordPress的/ PHP的 - 如何顯示頁面描述
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(),如截圖所示?謝謝。
恕我直言,你這樣做是錯誤的模板:點擊這裏http://codex.wordpress.org/ Template_Hierarchy – Sergey
對我來說也是如此,但我沒有構建主題,我想避免更改模板,因爲其他一切都是我的朋友在她的網站上需要的方式。 – mheavers