__( 'Main Sidebar', 'blue-clouds' ),
'id' => 'blue-clouds',
'before_widget' => '
',
'after_widget' => '',
'before_title' => ''
));
}
add_action( 'after_setup_theme', 'wpse_theme_setup' );
function wpse_theme_setup() {
add_editor_style();
add_theme_support( 'title-tag' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( "post-thumbnails" );
add_theme_support( 'custom-background');
add_theme_support( 'custom-header');
}
if ( ! isset( $content_width ) ) {
$content_width = 600;
}
/**
* Enqueue scripts and styles.
*/
function theme_scripts() {
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'theme_scripts' );
?>