你可以用这种方法轻松地完成,只需复制single.php
并重命名为single-custom-post-type-name.php
喜欢single-cars.php
, 归档或分类法也是如此,taxonomy-taxonomy-name.php
或archive-taxonomy-name.php
或者您可以查询随机页面、主页或博客:
<?php
// The Query
$query = new WP_Query(array(\'post_type\' => \'your-custom-post\'));
query_posts( $query );
// The Loop
while ( $query->have_posts() ) : $query->the_post();
// your post content ( title, excerpt, thumb....)
endwhile;
// Reset Query
wp_reset_query();
?>
祝你好运!;)