我正在显示我在wordpress上开发的外部网站上的博客的最后一篇文章。
<?php
//Include WordPress
define('WP_USE_THEMES', false);
require('./blog/wp-load.php');
//Define quantos posts serão exibidos
query_posts('showposts=3');
?>
<?php while (have_posts()): the_post(); ?>
<li>
<h4><?php the_title(); ?></h4>
<span><?php the_time("d/m/Y"); ?></span>
<?php the_category_ID(); ?>
<?php the_content(); ?>
<div>
<a href="<?php the_permalink(); ?>">« Leia Mais...</a>
</div>
</li>
<?php endwhile;?>
重点是博客分为两类,我只想展示其中一类。
我获得这些功能的链接。
答案 0 :(得分:0)
查询帖子时,您也可以添加类别的条件,如下所示:
query_posts('showposts=3&cat=CAT_ID'); //replace CAT_ID with the category ID that you want
由于您提到要显示最新帖子,您可能需要这样做:
query_posts('showposts=3&cat=CAT_ID&orderby=date&order=DESC');