__('Primary Navigation', 'roots'), 'utility_navigation' => __('Utility Navigation', 'roots') )); } add_action('after_setup_theme', 'roots_setup'); // create widget areas: sidebar, footer $sidebars = array('Sidebar', 'Footer'); foreach ($sidebars as $sidebar) { register_sidebar(array('name'=> $sidebar, 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

' )); } // return post entry meta information function roots_entry_meta() { echo ''; echo '

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

'; } ?>