__('Primary Navigation', 'roots'), 'utility_navigation' => __('Utility Navigation', 'roots') )); } add_action('after_setup_theme', 'roots_setup'); // http://codex.wordpress.org/Function_Reference/register_sidebar // hook into 'widgets_init' function with a lower priority in your // child theme to remove these sidebars function roots_register_sidebars() { register_sidebar( array( 'id'=> 'roots-sidebar', 'name' => __('Sidebar', 'roots'), 'description' => __('Sidebar', 'roots'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' )); register_sidebar( array( 'id'=> 'roots-footer', 'name' => __('Footer', 'roots'), 'description' => __('Footer', 'roots'), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' )); } add_action('widgets_init', 'roots_register_sidebars'); // return post entry meta information function roots_entry_meta() { echo ''; echo '

'. __('Written by', 'roots') .'

'; } ?>