Yoast\WP\SEO\Conditionals

User_Profile_Conditional{}Yoast 1.0

Conditional that is only met when current page is the tools page.

Хуков нет.

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

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

Методы

  1. public is_met()

Код User_Profile_Conditional{} Yoast 23.4

class User_Profile_Conditional implements Conditional {

	/**
	 * Returns whether or not this conditional is met.
	 *
	 * @return bool Whether or not the conditional is met.
	 */
	public function is_met() {
		global $pagenow;

		if ( $pagenow !== 'profile.php' ) {
			return false;
		}

		return true;
	}
}