Question

How to write conditions on capabilities not on user role?

Était-ce utile?

La solution

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.' ) );
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à wordpress.stackexchange
scroll top