0
我想創建一個類別模板,顯示每個子類別下的父類別標題,子類別標題和所有帖子。WordPress的模板 - 顯示由子類別分離的父類別下的所有帖子
所以它看起來像這樣
家長 子目錄 帖子#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; ?>
謝謝但是這給我下面的錯誤「警告:isset或空在非法偏移類型/homepages/9/d389995387/htdocs/marketsquaresj/wp-includes/class-wp-term-query.php on line 376「你能告訴我類別模板代碼應該插入到我提供的代碼中嗎?要重新放置ced? – user1488639
對不起,我的錯誤。它應該是'object_id',而不是'object',我已經更新了代碼,再試一次。 – Cl0udSt0ne
真棒,修復它謝謝! – user1488639