PHP WordPress:来自类别的最新帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress:来自类别的最新帖子相关的知识,希望对你有一定的参考价值。

<div class="pod">
	<h2>Latest Announcements</h2>
	<ul>
		<?php query_posts('cat=5&showposts=10'); ?>
		<?php while(have_posts()) : the_post(); if(!($first_post == $post->ID)) : ?>
		<li>
			<a href="<?php the_permalink() ?>" rel="bookmark" title="Permalink: <?php the_title(); ?>"><?php the_title(); ?></a>
		</li>
		<?php endif; endwhile; ?>
	</ul>
</div>

以上是关于PHP WordPress:来自类别的最新帖子的主要内容,如果未能解决你的问题,请参考以下文章

使用 ajax 通过 WordPress 菜单在 div 中按类别加载最新帖子

从 WordPress 中的特定类别获取置顶帖子

如何在 Wordpress 的存档页面上显示所有类别的帖子?

php Wordpress - 列出所有(自定义帖子类型)帖子类别

php WordPress:按类别的相关帖子

PHP WordPress:获取给定类别的帖子数