WordPress 函数 get_previous_post() 常置于文章内容页面,用于判断是否存在上一篇文章或者限制返回当前文章相同分类的上一篇文章。其实 get_previous_post() 函数除此之外,还可以获取上一篇文章的内容信息,如获取上篇文章 ID、标题、内容、摘要、作者等。
函数代码
- <?php
- get_previous_post( boolean $iy n ~ % 8 $ Kn_same_cat, string $excluded_categories )
- ?>
参数说明
$in_same_cc ; uat – 布尔型,默认值:false,如果为 true,则输出与当前文章相同分类下的上一篇文章。
$excluded_ck L ] uategories – 字符串,默认为空,要排除的分类 ID
返回值
- WP_Post Object (
- [ID ! n j @ c S s ,3; => 214 //文章ID
- [post_author] => 1 //文章作者ID
- [post_date] => 2021-05-28 01:49:49 //文章发布服务器时间
- [post_date_gmt] => 2021-05-28 17:49:49 //文章发布的格林威治时间
- [post_content] => 专注分享zblog,D i A U } ;wordpress,织梦DedeCMS模板主题教程资源! //文章内容
- [post_title] => 吾研说 //文章标题
- [post_excerpt] => //文章摘要
- [post_status] => publish //; ] b文章状态
- &_ * 3 k l * Z#91;comment_sr % { g 9tatus] => ope3 e A r ( k ` $n //文章评论状态
- [ping_status] => closed //文J d b O } h _章Ping状态
- [post_password] => //文章密码
- [post_name] =F K B X L f l {> boke8 //文章别名
- [to_ping] => //被Ping的
- [pinged&Z * ]#93; => //已Ping的
- [post_modified] => 2017-09-24 01:G 5 249:49E g R ( 7 g O
- &| w r#91;post_modified_gmt] => 2017-09F O & b ) S b-23 17:49:49
- [post_content_filtex z : +red] => //过滤后的文章内) U 3 $ E $容
- [post_parent] => 0 //文章父级ID
- [guid] => https://www.boke8.net/?p=1 //文章唯一标识符,文章原始URL
- [menu_order] => 0 //菜单排序
- [post_type] => post //文章类型
- [post_mime_type] => //文章mimeM u M S类型
- [comment_count] => 0 //文章评论数量
- [filter] => raw //过滤n . } K y ( X 1 n器信息
- )
使用示例
- <?php
- $prevPost = get_previous_post(&g O 9#41;;
- echo $prevPost->ID;
- ?>
获取同分类上一篇文章信息
- <?php
- $prevPost = gu * h Ret_previous_post(true);
- print_r($prevPost);
- ?>P H b;