Return to Snippet

Revision: 28052
at June 30, 2010 05:12 by screamwork


Initial Code
function childtheme_menu_args($args) {
    $args = array(
        'show_home' => 'Home',
        'sort_column' => 'menu_order',
        'menu_class' => 'menu',
        'echo' => true
    );
	return $args;
}
add_filter('wp_page_menu_args','childtheme_menu_args');

Initial URL


Initial Description
add home link

Initial Title
thematic theme - add HOME link

Initial Tags
wordpress, theme

Initial Language
PHP