时间:2024-03-12
WordPress函数wp_count_posts返回指定文章类型的文章数量,并且可以根据已登录用户的权限来返回数据,只返回该用户拥有读权限的文章数量。
wp_count_posts( string $type = 'post', string $perm = '' )
$type
字符串,默认值:post
文章类型的名称
$perm
字符串,默认为空
如果指定值为readable,则只返回当前登录用户具有读权限的文章数量。
$count_posts = wp_count_posts(); if($count_posts) { $published_posts = $count_posts->publish; }
wp_count_posts()函数位于:wp-includes/post.php
相关函数:
current_user_can()
wp_cache_get()
wp_cache_set()
is_user_logged_in()
Copyright © 2019-2024 javascript.hk