我必須列出來自Wordpress自定義帖子類型的所有帖子,並只顯示通過自定義分類標準創建的標題及其各自的類別。我的代碼在這裏,我在分類法上遇到了一些問題。在Wordpress中列出所有帖子和相應的分類標準
<?php
$args = array(
'post_type' => 'books',
'posts_per_page' => -1);
$myposts = get_posts($args);
$terms = get_the_terms($post->ID , 'category');
foreach ($myposts as $post) : setup_postdata($post); ?>
<h1><?php echo the_title(); ?></h1>
<p>Category: <?php echo $term->name; ?></p>
<?php endforeach;
wp_reset_postdata();?>
謝謝@ nerijus-masikonis,但它沒有渲染類別。 =( –