__('Primary Navigation', 'roots') )); } add_action('after_setup_theme', 'roots_setup'); // http://codex.wordpress.org/Function_Reference/register_sidebar function roots_register_sidebars() { $sidebars = array('Sidebar', 'Footer'); foreach($sidebars as $sidebar) { register_sidebar( array( 'id' => 'roots-' . sanitize_title($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') .'

'; } ?>