wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



add_screen_option › WordPress Function

Od3.1.0
Przestarzałyn/a
add_screen_option ( $option, $args = array() )
Parametry: (2)
  • (string) $option An option name.
    Wymagane: Tak
  • (mixed) $args Option-dependent arguments.
    Wymagane: Nie
    Domyślny: array()
Zdefiniowane na:
Codex:

Register and configure an admin screen option



Źródło

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

	if ( ! $current_screen ) {
		return;
	}

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