Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

gameforestwpthemefeatures

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

// Register Theme Features
function gameforestwp_theme_features()  {

	// Add theme support for Post Formats
	add_theme_support( 'post-formats', array( 'gallery', 'image', 'video', 'link' ) );

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

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