我有一个名为“audio”的自定义帖子类型。要显示页面中的所有帖子,我编写了下面的代码,但它不起作用。
<?php
$post_type = "audioes";//post type names
echo "djnbfj";
$post_type->the_post();
// The Query
$the_query = new WP_Query( array(
'post_type' => $post_type,
'orderby' => 'post_date',
'order' => 'DESC',
'showposts' => 1,
));
// The Loop
?>
<?php
while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="issue-content">
<?php get_template_part('includes/breadcrumbs', 'page'); ?>
<?php if ( has_post_thumbnail() ) { the_post_thumbnail();}
get_template_part('loop-audio', 'page');
?>
</div><!--issue-content-->
<?php endwhile; ?>
</div> <!-- end #left_area -->
我如何获得帖子类型我想要上面写的自定义。
答案 0 :(得分:0)
帖子类型是“音频”还是“音频”?您的$ post_type变量设置为“audioes”。
答案 1 :(得分:0)
我不确定get_template_part
行或echo
行是做什么的,但下面的代码应显示您的帖子类型。您还在代码中将帖子类型名称设置为“audioes”,但您声明该名称为“audio”。尝试下面的代码,但如果帖子类型被命名为“audioes”,那么你需要在下面的代码中更改它。您可以在<?php the_post_thumbnail(); ?>
和<?php the_content(); ?>
周围包含其他div,span或其他HTML标记,以便为您提供CSS样式。
<?php query_posts(array('post_type' => 'audio', 'posts_per_page' => 1, 'orderby' => 'post_date', 'order' => 'DESC')); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="issue-content">
<?php the_post_thumbnail(); ?>
<?php the_content(); ?>
</div>
<?php endwhile; wp_reset_query(); ?>