WP_Customize_Nav_Menus_Panel::render_screen_options() WordPress Method
The WP_Customize_Nav_Menus_Panel::render_screen_options() method displays the screen options for the menus panel. It allows you to choose which options to display on the screen.
WP_Customize_Nav_Menus_Panel::render_screen_options() #
Render screen options for Menus.
Source
File: wp-includes/customize/class-wp-customize-nav-menus-panel.php
public function render_screen_options() { // Adds the screen options. require_once ABSPATH . 'wp-admin/includes/nav-menu.php'; add_filter( 'manage_nav-menus_columns', 'wp_nav_menu_manage_columns' ); // Display screen options. $screen = WP_Screen::get( 'nav-menus.php' ); $screen->render_screen_options( array( 'wrap' => false ) ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.3.0 | Introduced. |