Display dynamic title in Browser tab for wordpress for every page
First go to functions.php and add below code ->
function university_features() {
add_theme_support('title-tag');
}
add_action("after_setup_theme", "university_features");
and save and refresh wordpress blog.
Comments
Post a Comment