我在wordpress网站上工作,想要在我的自定义帖子类别中显示最近添加的帖子的永久链接,我已尝试过网上的许多推荐但却失败了。
这里有任何人,建议我使用php代码来显示最近添加的自定义帖子类型类别。
谢谢
答案 0 :(得分:0)
试试这个:
<?php
$post_type = 'your custom post type';
$posts_per_page = '5';
$queryObject = new WP_Query( 'post_type='. $post_type .'&posts_per_page='. $posts_per_page );
// The Loop!
if ($queryObject->have_posts()) {
?>
<ul>
<?php
while ($queryObject->have_posts()) {
$queryObject->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a></li><?php
}
?>
</ul>
<?php
}
?>
希望这有助于你