Yoast\WP\SEO\Helpers

Current_Page_Helper::is_post_format_archive()publicYoast 1.0

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() Yoast 22.4

public function is_post_format_archive() {
	$wp_query = $this->wp_query_wrapper->get_main_query();

	return $wp_query->is_tax( 'post_format' );
}