Archived topic
How to Remove Site Name from Search Results on Posts
2 replies · Started by Martin on March 29, 2021
Hi,
Can you please explain how to remove the website name from Google search results. This is for blog posts. By the way I thought of leaving the site title blank in the customizer but my homepage then shows a blank title tag (using elements for the home page).
So on Google:
This is the title of my Blog Post - Site Name <<< Remove this bit please.
I'm not using any SEO plugin as I don't like using them.
I'm using the GP Premium marketing theme.
Thanks!
Hi there,
you can use this PHP Snippet:
add_filter( 'document_title_parts', function( $title ) {
unset( $title['site'] );
return $title;
}, 10, 1 );
How to add PHP: https://docs.generatepress.com/article/adding-php/
Thanks David - works a treat.
I created a plugin and placed the code inside.
Is there a way for this to be only active on blog posts and leave pages left alone?
Thanks.