我正在開發一個wordpress主題,並希望顯示一個名爲'Artikel'的特定類別的帖子。但是,我的代碼不起作用。這是我的代碼:如何通過catogory過濾帖子?
<?php
$custom_query = new WP_Query([
'cat' => 'Artikel',
]);
if ($custom_query->have_posts()) {
while ($custom_query->have_posts()) {
$custom_query->the_post(); ?>
/* do things */
<?php
}
wp_reset_postdata();
}
?>
有誰知道我錯過了什麼?
您正在從wordpress中獲取數據默認的帖子類型和類別? –