码迷,mamicode.com
首页 > 其他好文 > 详细

wordpress文章数量统计函数wp_count_posts()

时间:2019-12-15 12:58:11      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:ber   代码结构   com   syntax   div   示例   line   fir   密文   

wp_count_posts()是用于统计指定文章类型文章数量的wordpress函数,通过wp_count_posts()函数可以统计所有类型的文章数量,如post、page或自定义文章类型post_type等,还可以计算指定状态的文章,如已发布、定时发布、草稿、待审、私有等。

代码结构:

1
<?php wp_count_posts(‘type‘, ‘readable‘); ?>
参数说明

type -(字符)可选,指定文章的类型(post_type),如post、page或其它自定义文章类型,默认为post。

perm -(字符)可选,该参数可将私密文章状态算入文章状态中,使用“readable”并要求用户登录,默认为空。

返回值

wp_count_posts()的返回值为数组

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
stdClass Object
(
    [publish] => 11	//已发布
    [future] => 0	//定时发布
    [draft] => 0	//草稿
    [pending] => 0	//待审
    [private] => 0	//私有
    [trash] => 0	//垃圾箱
    [auto-draft] => 34	//自动草稿
    [inherit] => 0	//修订版本
    [request-pending] => 0
    [request-confirmed] => 0
    [request-failed] => 0
    [request-completed] => 0
)

示例:

1、获取已发布文章的数量

1
2
3
4
5
<?php 
	$count = wp_count_posts();
	$getCount = $count->publish;
	echo $getCount;
?>

2、获取已发布页面的数量

1
2
3
4
5
<?php 
	$count = wp_count_posts(‘page‘);
	$getCount = $count->publish;
	echo $getCount;
?>

wordpress文章数量统计函数wp_count_posts()

标签:ber   代码结构   com   syntax   div   示例   line   fir   密文   

原文地址:https://www.cnblogs.com/pzptaa/p/12043643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!