Created
May 26, 2014 23:22
-
-
Save designbuildtest/603577e0047365b4368f to your computer and use it in GitHub Desktop.
Add a home link to wp_page_menu() by default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add a home link to wp_page_menu() by default | |
*/ | |
function twentyfourteen_page_menu_args( $args ) { | |
$show_on_front = get_option('show_on_front'); | |
if ( $show_on_front == 'posts' ) { | |
$args['show_home'] = true; | |
} | |
return $args; | |
} | |
add_filter( 'wp_page_menu_args', 'twentyfourteen_page_menu_args' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment