-1
我需要從類別的子類別中獲取最新的5篇文章。 我該怎麼做?從WordPress的循環中獲取類別子類別的最新5篇文章
//編輯 所以我得到它的工作,每子類別職位的固定ammount的:
<?php $descendants = get_categories(array('child_of' => 3)); ?>
<?php $cnt=1;
foreach ($descendants as $child) { ?>
<?php $catPosts = new WP_Query();
$catPosts -> query("showposts=3&cat=$child->term_id");
?>
<ul class="postPreviews">
<?php while ($catPosts->have_posts()) : $catPosts->the_post(); ?>
<li><a href="<?php the_permalink() ?>">
<div class="descOverlay">
<img src="<?php the_field('teaserimage'); ?>" />
<div class="overlayTitle">
<div class="imgwrap"><img src="<?php echo get_template_directory_uri(); ?>/opaq.png"></div>
<span><?php the_title(); ?></span></div>
</div>
</a></li>
<?php endwhile;
}?>
我覺得這個問題很清楚,即使它很短。如果您真的想幫助並需要更多信息,請告訴我。 – schliflo
讓我擴大,所以問題應該包含代碼,應該告訴我們你試過什麼,它失敗的地方... – 2014-01-23 20:20:52
我沒有嘗試任何東西,因爲我想不出一個解決方案。我試圖在Google上爲我的問題找到答案,但沒有成功。 – schliflo