André Mata
André Mata

Reputation: 383

The og:title doesn't show

I've been working on a blog (blogger) for a friend, and she want's the shared posts to show the post title and not the blog title... How can I accomplish this? I've already tried to delete the title tag...
<meta property="og:title"/> But the result is the same... What line of code should i delete or add?
Now, I only have this 4 lines of og code
<meta content='http://lostinthegoodlife.blogspot.com/' property='og:url'/> <meta content='http://3.bp.blogspot.com/-rVflDp3_oW8/VajTpnLQAxI/AAAAAAAAAig/stX7spBEFts/s320/rita2.jpg?t=12345?' property='og:image'/> <meta content='567' property='og:image:width'/> <meta content='567' property='og:image:height'/>

It's my first time editing code on blogger and i'm not really familiarized whit it... So could anybody help?

Upvotes: 2

Views: 1526

Answers (1)

Rahul Shah
Rahul Shah

Reputation: 1407

Step 1: Ensuring correct title of the article

Go to your template editor and paste this(Make necessary changes where applicable in the below code)

<b:if cond='data:blog.url == &quot;http://www.YOOURBLOG.BLOGSPOT.COM/2014/12/YOUR ARTICLE URL.html&quot;'>

<meta content='Can you guess what do these World Maps Indicate ?' property='og:title'/>    
<meta content='http://www.YOOURBLOG.BLOGSPOT.COM/2014/12/YOUR ARTICLE URL.html' property='og:url'/>
<meta content='The Best thing on the Internet,today!' property='og:description'/>
<meta content='https://lh5.googleusercontent.com/-XO6XJlYyh6M/VbONBkKs8CI/AAAAAAAANbk/Dt-wbrYGSwY/w1200-h628-no/map%2Bquiz.jpg' property='og:image'/>

</b:if>

Step 2: Ensuring FB cache is cleared

Go to https://developers.facebook.com/tools/debug/

Click on debug Then click on Fetch New scrape information.

Upvotes: 2

Related Questions