get_private_posts_cap_sql

函数
get_private_posts_cap_sql ( $post_type )
参数
  • (string|array) $post_type Single post type or an array of post types. Currently only supports 'post' or 'page'.
    Required:
返回值
  • (string) SQL code that can be added to a where clause.
定义位置
相关方法
_prime_post_cachesget_previous_posts_page_linkget_posts_by_author_sqlget_previous_posts_linkget_author_posts_url
引入
2.2.0
弃用
-

get_private_posts_cap_sql函数是一个WordPress函数,用于检索检索特定用户权限的私人文章的SQL查询: 这个函数把权限名称作为参数,并返回SQL查询。

根据权限检索隐私文章SQL。

这个函数提供了一个标准化的方法来适当地选择一个文章类型的post_status: 该函数将返回一段SQL代码,可以添加到WHERE子句中;该SQL的构造是允许所有已发布的文章,以及用户可以访问的所有私人文章。

function get_private_posts_cap_sql( $post_type ) {
	return get_posts_by_author_sql( $post_type, false );
}

常见问题

FAQs
查看更多 >