Yoast\WP\SEO\User_Meta\Application
Cleanup_Service::get_meta_to_check
Gets which meta are going to be checked for emptiness.
Метод класса: Cleanup_Service{}
Хуков нет.
Возвращает
Массив<Строку>. The meta to be checked for emptiness.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_meta_to_check();
Код Cleanup_Service::get_meta_to_check() Cleanup Service::get meta to check Yoast 26.9
private function get_meta_to_check() {
$additional_contactmethods = $this->additional_contactmethods_collector->get_additional_contactmethods_keys();
$custom_meta = $this->custom_meta_collector->get_non_empty_custom_meta();
return \array_merge( $additional_contactmethods, $custom_meta );
}