我試圖設計一個基於二十二個category.php模板的類別模板。自定義類別頁面模板
我相信我已經修改了下面的內容,但是它只顯示標題並且沒有內容,我是否缺少一行?如果你想顯示帖子內容
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<header class="page-header">
<h1 class="page-title"><?php
printf(__('Category Archives: %s', 'D-Theme'), '<span>' . single_cat_title('', false) . '</span>');
?></h1>
<?php
$category_description = category_description();
if (! empty($category_description))
echo apply_filters('category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>');
?>
</header>
<?php /* Start the Loop */ ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('content', get_post_format());
?>
<?php endwhile; ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e('Nothing Found', 'D-Theme'); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php _e('Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'D-Theme'); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
<?php endif; ?>
</div><!-- #content -->
</section><!-- #primary -->
幫助表示讚賞一如既往
嗨肯尼會,這也適用於一類調用帖子?感謝 –
的迴應,您需要從該類別中檢索帖子,然後在while循環中使用上述內容。這應該有助於:http://codex.wordpress.org/The_Loop#Exclude_Posts_From_Some_Category在示例代碼中它說:query_posts($ query_string。'&cat = -3,-8'),只需更改「-3,-8 「到要使用的類別標識。 – kennypu
嗨肯尼,感謝這個信息。我將不得不進一步閱讀。因爲我不是特別想從一個類別。我只想讓一個頁面在點擊時顯示任何類別,如果這是有意義的:) –