20 Jan WP Tip: Add Home on WP Menu
To add the option of ‘Home’ to the backend of WP menu manager, do the following code:
1 2 3 4 5 | function add_homepage_menu_option( $args ) { $args['show_home'] = true; return $args; } add_filter( 'wp_page_menu_args', 'add_homepage_menu_option' ); |
It adds a filter to set the argument ‘show_home’ to ‘true’.
No Comments