user3014233
user3014233

Reputation:

Wordpress: Check if logged in users have post edit capabilities

How to check in WordPress if a logged in user has specific capabilities (for example editing the post-type "product")? How to display the "Edit page" link to users which have the required capability?

Upvotes: 0

Views: 1014

Answers (1)

vico
vico

Reputation: 2142

<?php current_user_can( $capability , $object_id ); ?> 

https://codex.wordpress.org/Function_Reference/current_user_can

List of rights

https://codex.wordpress.org/Roles_and_Capabilities

Should always check the wordpress doc first

Upvotes: 0

Related Questions