Yoast\WP\SEO\Conditionals

User_Can_Publish_Posts_And_Pages_Conditional{}Yoast 1.0

Conditional that is only met when the current user has the wpseo_manage_options capability.

Хуков нет.

Использование

$User_Can_Publish_Posts_And_Pages_Conditional = new User_Can_Publish_Posts_And_Pages_Conditional();
// use class methods

Методы

  1. public is_met()

Код User_Can_Publish_Posts_And_Pages_Conditional{} Yoast 22.4

class User_Can_Publish_Posts_And_Pages_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( 'publish_posts' ) && \current_user_can( 'publish_pages' );
	}
}