__('Main Sidebar', 'advent'), 'id' => 'sidebar-1', 'description' => __('Main sidebar that appears on the right.', 'advent'), 'before_widget' => '', 'before_title' => '', )); } add_action('widgets_init', 'advent_widgets_init'); /** * Set up post entry meta. * Meta information for current post: categories, tags, permalink, author, and date. * */ function advent_entry_meta() { $advent_categories_list = get_the_category_list(',',''); $advent_tag_list = get_the_tag_list('', ',' ); $advent_author= ucfirst(get_the_author()); $advent_author_url= esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); $advent_comments = wp_count_comments(get_the_ID()); $advent_date = sprintf('', esc_attr(get_the_date('c')), esc_html(get_the_date('M d, Y'))); ?>