'Widgetized2 Area',
'id' => 'sidebar-box',
'description' => 'This is a widgetized area.',
'before_widget' => '
',
'after_widget' => '
',
'before_title' => ''
));
}
add_theme_support('post-thumbnails');
add_theme_support( "title-tag" );
add_theme_support( 'automatic-feed-links' );
set_post_thumbnail_size( 80, 80, true );
add_theme_support( "custom-header", $args );
add_theme_support( "custom-background", $args );
add_editor_style();
function custom_excerpt_length( $length ) {
return 30;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
if ( ! isset( $content_width ) ) {
$content_width = 600;
}
?>