我使用下面的代码来显示某个类别中的最新帖子,但我使用的是自定义帖子类型,我不知道如何在代码中插入自定义帖子类型函数。
我想从某个类别、每种帖子类型中获取最新的帖子。
那么我如何将其添加到下面的代码中。
<?php
$queryObject = new Wp_Query( \'posts_per_page=1&cat=23\' );
// The Loop!
if ($queryObject->have_posts()) {
?>
<?php
while ($queryObject->have_posts()){
$queryObject->the_post();
?>
<a href="<?php the_permalink(); ?>" title="<?php printf(__( \'Read %s\', \'wpbx\' ), wp_specialchars(get_the_title(), 1)) ?>">
<?php the_post_thumbnail(\'video-post\'); ?>
</a>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php
}
?>
<?php wp_reset_postdata();
}
?>