Yoast\WP\SEO\Dashboard\Domain\Filter_Pairs

Filter_Pairs_Interface{}Yoast 1.0

This interface describes a Filter Pair implementation.

Хуков нет.

Использование

$Filter_Pairs_Interface = new Filter_Pairs_Interface();
// use class methods

Методы

  1. public get_filtered_content_type()
  2. public get_filtering_taxonomy()

Код Filter_Pairs_Interface{} Yoast 24.3

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;
}