__('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() { $sidebars = array( 'Sidebar', 'Footer' ); foreach( $sidebars as $sidebar ) { register_sidebar( array( 'id'=> 'roots-' . strtolower( $sidebar ), 'name' => __( $sidebar, 'roots' ), 'description' => __( $sidebar, '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') .'

'; } ?>