I am trying to create a fully custom page, but using the same functions to create headers and footers in WP. I have it on my page
<?php
include("../wp-blog-header.php");
get_header();
?>
<title>My Custom Title Here</title>
<?php
wp_head();
get_footer();
?>
The page displays everything perfectly, but when I try to add <title>My Custom Title Here</title>after get_header(), I get it in my page source as titlePage not found – My Custom Title
How to customize the page title? I mean, after loading the page, the name should be<title>My Custom Title Here</title>
source
share