Yoast\WP\SEO\Dashboard\Domain\Score_Groups\Readability_Score_Groups
Abstract_Readability_Score_Group{}└─ Readability_Score_Groups_Interface, Abstract_Score_Group
Abstract class for a readability score group.
Хуков нет.
Использование
$Abstract_Readability_Score_Group = new Abstract_Readability_Score_Group(); // use class methods
Методы
- public get_filter_key()
Код Abstract_Readability_Score_Group{} Abstract Readability Score Group{} Yoast 27.3
abstract class Abstract_Readability_Score_Group extends Abstract_Score_Group implements Readability_Score_Groups_Interface {
/**
* Gets the key of the readability score group that is used when filtering on the posts page.
*
* @return string The name of the readability score group that is used when filtering on the posts page.
*/
public function get_filter_key(): string {
return 'readability_filter';
}
}