wpseo_get_rendered_tab()Yoast 1.0

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() Yoast 24.1

<?php
function wpseo_get_rendered_tab( $table, $id ) {
	?>
	<div id="<?php echo esc_attr( $id ); ?>" class="wpseotab">
		<?php
		$table->show_page();
		?>
	</div>
	<?php
}