Yoast\WP\SEO\Conditionals
User_Profile_Conditional{}└─ Conditional
Conditional that is only met when current page is the tools page.
Хуков нет.
Использование
$User_Profile_Conditional = new User_Profile_Conditional(); // use class methods
Методы
- public is_met()
Код User_Profile_Conditional{} User Profile Conditional{} Yoast 26.3
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;
}
}