Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Theme blank

// Set content width value based on the theme's design
if ( ! isset( $content_width ) )
	$content_width = 1200;

// Register Theme Features
function custom_theme_features()  {

	// Add theme support for Featured Images
	add_theme_support( 'post-thumbnails' );

	// Add theme support for document Title tag
	add_theme_support( 'title-tag' );

	// Add theme support for custom CSS in the TinyMCE visual editor
	add_editor_style();
}
add_action( 'after_setup_theme', 'custom_theme_features' );