wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



add_screen_option › WordPress Function

Seit3.1.0
Veraltetn/v
add_screen_option ( $option, $args = array() )
Parameter: (2)
  • (string) $option An option name.
    Erforderlich: Ja
  • (mixed) $args Option-dependent arguments.
    Erforderlich: Nein
    Standard: array()
Definiert in:
Codex:

Register and configure an admin screen option



Quellcode

function add_screen_option( $option, $args = array() ) {
	$current_screen = get_current_screen();

	if ( ! $current_screen ) {
		return;
	}

	$current_screen->add_option( $option, $args );
}