Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot change page title in WordPress scratch theme #25

Open
pthoelken opened this issue Aug 3, 2018 · 0 comments
Open

Cannot change page title in WordPress scratch theme #25

pthoelken opened this issue Aug 3, 2018 · 0 comments

Comments

@pthoelken
Copy link

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.

Best, Patrick.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant