__('Main Sidebar', 'bizzboss'),
'id' => 'sidebar-1',
'description' => __('Main sidebar that appears on the right.', 'bizzboss'),
'before_widget' => '',
'before_title' => '
',
'after_title' => '
',
));
register_sidebar(array(
'name' => __('Footer Area One', 'bizzboss'),
'id' => 'footer-1',
'description' => __('Footer Area One that appears on footer.', 'bizzboss'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Footer Area Two', 'bizzboss'),
'id' => 'footer-2',
'description' => __('Footer Area Two that appears on footer.', 'bizzboss'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Footer Area Three', 'bizzboss'),
'id' => 'footer-3',
'description' => __('Footer Area Three that appears on footer.', 'bizzboss'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Footer Area Four', 'bizzboss'),
'id' => 'footer-4',
'description' => __('Footer Area Four that appears on footer.', 'bizzboss'),
'before_widget' => '',
'before_title' => '',
));
}
add_action('widgets_init', 'bizzboss_widgets_init');
/**
* Set up post entry meta.
* Meta information for current post: categories, tags, permalink, author, and date.
* */
function bizzboss_entry_meta() {
$bizzboss_categories_list = get_the_category_list(', ','');
$bizzboss_tag_list = get_the_tag_list('', ', ' );
$bizzboss_author= ucfirst(get_the_author());
$bizzboss_author_url= esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );
$bizzboss_comments = wp_count_comments(get_the_ID());
$bizzboss_date = sprintf('', esc_attr(get_the_date('c')), esc_html(get_the_date('F d , Y')));
?>