【发布时间】:2016-11-16 23:48:51
【问题描述】:
我想创建一个类别模板,显示父类别标题、子类别标题以及每个子类别下的所有帖子。
所以它看起来像这样
父母 子类别 发布 #1 发布 #2 子类别 发布#3 发布#4
这是我目前所拥有的,但我不知道如何前进。
<?php if ( have_posts() ) : ?>
<div class="section-header">
<h1 class="page-title"><?php single_cat_title(''); ?></h1>
<!-- <?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="taxonomy-description">', '</div>' );
?> -->
</header><!-- .page-header -->
<p>Some text</p>
<?php
// The Query
$the_query = new WP_Query( array( 'cat' => 72 ) );
// The Loop
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
echo '</ul>';
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
}
?>
<?php else : ?>
<?php ?>
<?php endif; ?>
【问题讨论】:
标签: wordpress