WPSEO_Admin_Bar_Menu::get_current_indexable
Returns the indexable for the current WordPress page, with cache applied.
Метод класса: WPSEO_Admin_Bar_Menu{}
Хуков нет.
Возвращает
true|false|Indexable. The indexable, false if none could be found.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_current_indexable();
Код WPSEO_Admin_Bar_Menu::get_current_indexable() WPSEO Admin Bar Menu::get current indexable Yoast 27.4
protected function get_current_indexable() {
$this->current_indexable ??= $this->indexable_repository->for_current_page();
return $this->current_indexable;
}