Inject Title Of Page To head


//Function To Inyect <head> Start
function custom_features(){
    //Inyect Title to <title></title> on <head>
    add_theme_support('title-tag');
}
//Trigger Function custom_features()
add_action('after_setup_theme', 'custom_features');
//Inyect <head> End
Scroll to Top