Yoast\WP\SEO\Conditionals
User_Can_Manage_Wpseo_Options_Conditional{}
Conditional that is only met when the current user has the wpseo_manage_options capability.
Хуков нет.
Использование
$User_Can_Manage_Wpseo_Options_Conditional = new User_Can_Manage_Wpseo_Options_Conditional(); // use class methods
Методы
- public is_met()
Код User_Can_Manage_Wpseo_Options_Conditional{} User Can Manage Wpseo Options Conditional{} Yoast 24.1
class User_Can_Manage_Wpseo_Options_Conditional implements Conditional { /** * Returns whether or not this conditional is met. * * @return bool Whether or not the conditional is met. */ public function is_met() { return \current_user_can( 'wpseo_manage_options' ); } }