Change Page Title
-
In my child theme’s functions.php file, I’m trying to change a page’s <title> tag:
function custom_title() {
return “Page Title”;
}
add_filter( ‘wp_head’, ‘custom_title’, 9999 );The code above is not changing the page’s default <title>. What am I doing wrong?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Change Page Title’ is closed to new replies.