Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

theme supportt

// Register Theme Features
function custom_themesupport()  {

	// Add theme support for Featured Images
	add_theme_support( 'post-thumbnails', array( 'post', 'page', 'client', 'service', 'product' ) );

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