Yoast\WP\SEO\Integrations\Admin
Indexing_Tool_Integration::render_indexing_list_item() public Yoast 1.0
Renders the indexing list item.
{} Это метод класса: Indexing_Tool_Integration{}
Хуков нет.
Возвращает
null.
Использование
$Indexing_Tool_Integration = new Indexing_Tool_Integration(); $Indexing_Tool_Integration->render_indexing_list_item();
Код Indexing_Tool_Integration::render_indexing_list_item() Indexing Tool Integration::render indexing list item Yoast 15.6.2
public function render_indexing_list_item() {
if ( \current_user_can( 'manage_options' ) ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- The output is correctly escaped in the presenter.
echo new Indexing_List_Item_Presenter( $this->short_link_helper );
}
}