Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

title code

in class

// Register Theme Features
function custom_theme_features()  {

	// Add theme support for document Title tag
	add_theme_support( 'title-tag' );
}
add_action( 'after_setup_theme', 'custom_theme_features' );