__( 'Sidebar Widget Area' ),
'id' => 'sidebar-widget-area',
'description' => __( 'The sidebar widget area' ),
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
));
add_theme_support( 'automatic-feed-links' );
if ( is_singular() ) wp_enqueue_script( "comment-reply" );
if ( ! function_exists( 'all_orange_posted_on' ) ) :
function all_orange_posted_on() {
echo 'Posted on ';
echo the_time('F jS, Y');
echo ' by ';
echo get_the_author();
echo '
';
}
endif;
if ( ! function_exists( 'all_orange_posted_in' ) ) :
function all_orange_posted_in() {
echo 'Posted in ';
echo the_category(', ');
echo edit_post_link('Edit', '', ' | ');
echo comments_popup_link('No Comments', '1 Comment', '% Comments');
}
endif;
?>