如標題所示,當我嘗試查詢帖子以顯示哪些帖子屬於哪個類別時,它只顯示所有帖子,查看我是否在代碼中犯了錯誤或循環我試圖搜索堡標籤,而不是這個工作無法通過WordPress循環中的類別查詢帖子
<section class="background-wrapper">
<section class="content">
<div class="heading"><h1>Posts tagged with "coding"..</h1></div>
<div class="module-wrapper">
<?php if (have_posts()): ?>
<?php query_posts('cat=design');//NOTE USING ('tag=css') WORKED ?>
<?php while (have_posts()) : the_post(); ?>
<?php wpb_set_post_views(get_the_ID()); //storing a value of a page view ?>
<div class="module">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- Post Title -->
<h1 class="post-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h1>
<!-- /Post Title -->
<?php html5wp_excerpt('html5wp_index'); // Build your custom callback length in functions.php ?>
查詢標籤時,代碼是否需要不同?
我不認爲你可以使用'cat = design'。相反,你可能想使用'query_posts('category_name = design');'。使用'cat',它期望param是ID。 –