Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a function for knowing if user is 'shop_manager' in WP / woocommerce

I want to know if the shop_manager is logged-in WP/woocommerce. I know the function is_admin(), but do you know a way to use something like this 'is_shop_manager()' ?

Thanks

like image 971
mrbangybang Avatar asked Jul 16 '13 10:07

mrbangybang


1 Answers

Actually Yes, there is!

current_user_can( 'manage_woocommerce' );

Docs:

current_user_can($capability)

'manage_woocommerce'

like image 149
Anfelipe Avatar answered Oct 07 '22 10:10

Anfelipe