我正在向服务器编写一个ajax调用,请求下一组帖子。然而,当我试图生成帖子列表时,我对post\\u class()函数有一个问题。它不会向post添加“post”类。
$osetin_query = new WP_Query( $args );
while ($osetin_query->have_posts()) : $osetin_query->the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>></article>
<?php endwhile; ?>
结果:
<article id="post-154" class="post-154 type-post">
预期结果:
<article id="post-154" class="post-154 post type-post">