Skip to content

Instantly share code, notes, and snippets.

@gmaggio
Created June 15, 2014 14:37
Show Gist options
  • Save gmaggio/8b0c6ca698453efd8acd to your computer and use it in GitHub Desktop.
Save gmaggio/8b0c6ca698453efd8acd to your computer and use it in GitHub Desktop.
[Wordpress] Add option to link to Homepage in custom menu.
/*-----------------------------------------------------------------------------------*/
/* Add option to link to Homepage in custom menu */
/*-----------------------------------------------------------------------------------*/
if ( ! function_exists( 'home_page_menu_args' ) ) {
function home_page_menu_args( $args ) {
$args['show_home'] = true;
return $args;
}
add_filter( 'wp_page_menu_args', 'home_page_menu_args' );
} // End home_page_menu_args()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment