author_can

函数
author_can ( $post, $capability, $args )
参数
  • (int|WP_Post) $post Post ID or post object.
    Required:
  • (string) $capability Capability name.
    Required:
  • (mixed) $args Optional further parameters, typically starting with an object ID.
    Required:
返回值
  • (bool) Whether the post author has the given capability.
定义位置
相关方法
user_canthe_author_icqthe_author_msnthe_author_aimget_author_name
引入
2.9.0
弃用
-

author_can: 这个函数用于检查某个用户是否可以在一个文章、页面或自定义文章类型上执行特定的操作。它需要两个参数:第一个是被检查的权限,第二个是文章的ID。如果用户有这种权限,它将返回true。如果没有,它将返回false。

返回所提供的文章的作者是否具有指定的权限。

这个函数也接受一个对象的ID,以检查该权限是否是元权限。元权限,如`edit_post`和`edit_user`是由`map_meta_cap()`函数用来映射到用户或角色的原始权限,如`edit_posts`和`edit_others_posts`。

使用实例:

author_can( $post, ‘edit_posts’ );
author_can( $post, ‘edit_post’, $post->ID );
author_can( $post, ‘edit_post_meta’, $post->ID, $meta_key );

function author_can( $post, $capability, ...$args ) {
	$post = get_post( $post );
	if ( ! $post ) {
		return false;
	}

	$author = get_userdata( $post->post_author );

	if ( ! $author ) {
		return false;
	}

	return $author->has_cap( $capability, ...$args );
}

常见问题

FAQs
查看更多 >