Yoast\WP\SEO\Dashboard\Domain\Filter_Pairs
Filter_Pairs_Interface{}
This interface describes a Filter Pair implementation.
Хуков нет.
Использование
$Filter_Pairs_Interface = new Filter_Pairs_Interface(); // use class methods
Методы
- public get_filtered_content_type()
- public get_filtering_taxonomy()
Код Filter_Pairs_Interface{} Filter Pairs Interface{} Yoast 27.4
interface Filter_Pairs_Interface {
/**
* Gets the filtering taxonomy.
*
* @return string
*/
public function get_filtering_taxonomy(): string;
/**
* Gets the filtered content type.
*
* @return string
*/
public function get_filtered_content_type(): string;
}