wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



screen_layout › WordPress Function

Da2.8.0
Deprecato3.3.0
screen_layout ( $screen )
Vedi:
  • WP_Screen::render_screen_layout()
Definito a:
Codex:

Returns the screen layout options.



Sorgenti

function screen_layout( $screen ) {
	_deprecated_function( __FUNCTION__, '3.3.0', '$current_screen->render_screen_layout()' );

	$current_screen = get_current_screen();

	if ( ! $current_screen )
		return '';

	ob_start();
	$current_screen->render_screen_layout();
	return ob_get_clean();
}