Yoast\WP\SEO\Helpers
Current_Page_Helper::is_post_format_archive()
Checks if the current page is the post format archive.
Метод класса: Current_Page_Helper{}
Хуков нет.
Возвращает
true|false
. Whether or not the current page is the post format archive.
Использование
$Current_Page_Helper = new Current_Page_Helper(); $Current_Page_Helper->is_post_format_archive();
Код Current_Page_Helper::is_post_format_archive() Current Page Helper::is post format archive Yoast 24.7
public function is_post_format_archive() { $wp_query = $this->wp_query_wrapper->get_main_query(); return $wp_query->is_tax( 'post_format' ); }