esc_html__( 'Standard Navigation', 'brad' )
)
);
}
add_action( 'init', 'ebor_register_nav_menus' );
}
if(!( function_exists('ebor_register_sidebars') )){
function ebor_register_sidebars() {
register_sidebar(
array(
'id' => 'primary',
'name' => esc_html__( 'Blog Sidebar', 'brad' ),
'description' => esc_html__( 'Widgets to be displayed in the blog sidebar.', 'brad' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => ''
)
);
register_sidebar(
array(
'id' => 'footer1',
'name' => esc_html__( 'Footer Column 1', 'brad' ),
'description' => esc_html__( 'If this is set, your footer will be 1 column', 'brad' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => ''
)
);
register_sidebar(
array(
'id' => 'footer2',
'name' => esc_html__( 'Footer Column 2', 'brad' ),
'description' => esc_html__( 'If this & column 1 are set, your footer will be 2 columns.', 'brad' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => ''
)
);
register_sidebar(
array(
'id' => 'footer3',
'name' => esc_html__( 'Footer Column 3', 'brad' ),
'description' => esc_html__( 'If this & column 1 & column 2 are set, your footer will be 3 columns.', 'brad' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => ''
)
);
register_sidebar(
array(
'id' => 'footer4',
'name' => esc_html__( 'Footer Column 4', 'brad' ),
'description' => esc_html__( 'If this & column 1 & column 2 & column 3 are set, your footer will be 4 columns.', 'brad' ),
'before_widget' => '',
'after_widget' => '
',
'before_title' => ''
)
);
}
add_action( 'widgets_init', 'ebor_register_sidebars' );
}