我已经尝试查看数据库,但我似乎无法进行查询来执行此操作。我如何只查看一个类别的帖子,或者更具体地说,我只需要该类别中最后一个帖子的ID。
我正在尝试在index.php中执行此操作
答案 0 :(得分:9)
使用get_posts
可以满足您的需求,documentation here
以下
的内容<?php
$postsincat = get_posts(array("cat" => 1, "showposts" => 1));
$idoflatestpostincategory = $postsincat[0]->ID;
?>
您还可以在数组中使用category_name
代替cat
来使用名称而不是ID。