wpseo_get_rendered_tab()
Renders a bulk editor tab.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpseo_get_rendered_tab( $table, $id );
- $table(WPSEO_Bulk_List_Table) (обязательный)
- The table to render.
- $id(строка) (обязательный)
- The id for the tab.
Код wpseo_get_rendered_tab() wpseo get rendered tab Yoast 27.4
<?php
function wpseo_get_rendered_tab( $table, $id ) {
?>
<div id="<?php echo esc_attr( $id ); ?>" class="wpseotab">
<?php
$table->show_page();
?>
</div>
<?php
}