How to write conditions on capabilities not on user role?

有帮助吗?

解决方案

With current_user_can(), or $user->has_cap() for other users:.

if ( ! current_user_can( 'delete_post', $post_id ) ) {
    wp_die( __( 'Sorry, you are not allowed to move this item to the Trash.' ) );
}
许可以下: CC-BY-SA归因
scroll top