You appear to be a bot. Output may be restricted
Description
Determine whether this page is an taxonomy archive page for multiple terms (url: /term-1,term2/).
Usage
$bool = Current_Page_Helper::is_multiple_terms_page();
Parameters
Returns
bool Whether or not the current page is an archive page for multiple terms.
Source
File name: wordpress-seo/src/helpers/current-page-helper.php
Lines:
1 to 7 of 7
public function is_multiple_terms_page() { if ( ! $this->is_term_archive() ) { return false; } return $this->count_queried_terms() > 1; }