Cannot change title in my wordpress site
-
Howdy Team. I’ve tried to change the page title in the normal WordPress settings and Yoast SEO settings too. Last but not least I’ve tried to change in header.php
<title><?php wp_title( '|', true, 'right' ); ?></title>
and in the function.php too:
function custom_title($title_parts) { $title_parts['title'] = "Page Title"; return $title_parts; } add_filter( 'document_title_parts', 'custom_title' );
both are doesn’t work. Can you help me in this section? Also as I check my Google Chrome Developer Console, he shows me no errors. I really think, it’s a Brizy Bug, because, if I change the Template in side attributes to “Default Page” it will be display correct.
Best, Patrick.
In the screenshot you can see my problem.
Screenshots
https://user-images.githubusercontent.com/12643853/43821685-2a852476-9aea-11e8-9c93-acfcf5208e3b.png
- The topic ‘Cannot change title in my wordpress site’ is closed to new replies.