Lastly we are going add some theme support.
Add featured image support on post.
-
Open the functions.php and find the function called h2wp_theme_setup and add the below codes there for featured image support on post.
add_theme_support( 'post-thumbnails' );
Add support for dynamic title tag.
-
Open the header.php find the <title></title> tag and remove the tag.
-
Open the functions.php and find the function called h2wp_theme_setup and add the below codes there for dynamic title.
add_theme_support( 'title-tag' );