Yoast\WP\SEO\Conditionals
Primary_Category_Conditional{} Yoast 1.0
Conditional that is only met when in frontend or page is a post overview or post add/edit form.
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Primary_Category_Conditional = new Primary_Category_Conditional(); // use class methods
Методы
Код Primary_Category_Conditional{} Primary Category Conditional{} Yoast 15.6.2
class Primary_Category_Conditional implements Conditional {
/**
* The current page helper.
*
* @var Current_Page_Helper
*/
private $current_page;
/**
* Primary_Category_Conditional constructor.
*
* @param Current_Page_Helper $current_page The current page helper.
*/
public function __construct( Current_Page_Helper $current_page ) {
$this->current_page = $current_page;
}
/**
* Returns `true` when on the frontend,
* or when on the post overview, post edit or new post admin page.
*
* @returns boolean `true` when on the frontend, or when on the post overview,
* post edit or new post admin page.
*/
public function is_met() {
if ( ! \is_admin() ) {
return true;
}
return \in_array( $this->current_page->get_current_admin_page(), [ 'edit.php', 'post.php', 'post-new.php' ], true );
}
}