Cain Nuke
Cain Nuke

Reputation: 3079

How to edit the title appearing on the mobile version of google results page?

This is a bit of a SEO question. If you search something on Google on a mobile device you see something like this:

enter image description here

How do you edit or change the word inside the red circle? I thought it reflected what you have inside the title meta tag but it doesn't seem to be the case.

Upvotes: 0

Views: 244

Answers (3)

Hari E
Hari E

Reputation: 490

Add the below meta tags in the header.php file (Appearance -> Theme File Editor -> Header.php)

Note: You can also access and edit the header.php file from wp-content/themes/{YOUR_THEME}/header.php via FTP/SSH

og:title is responsible for title shown in Google search results. For more details check out this link https://ogp.me/

<head>
<meta property="og:title" content="Your Title" />
<meta property="og:image" content="Your Image URL" />
<meta property="og:description" content="Description " />
<meta property="og:site_name" content="My Website, Inc." />
</head>

Alternate Method : you can use Meta Tag Manager to edit meta tag via plugin

Upvotes: 1

Brett Donald
Brett Donald

Reputation: 14107

The <title> tag (which is not a <meta> tag) populates the heading text in blue or purple, below the two renderings of the URL. Not sure why Google on mobile renders the URL twice (once without the scheme), but it looks the same on my own sites.

[screenshot]

Upvotes: 0

Tyzia
Tyzia

Reputation: 124

I would recommend to use Yoast plugin for any SEO related questions for Wordpress:

https://yoast.com/wordpress/plugins/seo/

I am pretty sure that you will be able to change the text in red circle with this plugin.

Upvotes: 0

Related Questions