Reputation: 3209
I am using a twitter share button and I noticed that the title inside the twitter share is from my HTML title <title>My Page</title>
is it possible to change the twitter title to my meta og:title instead?
For some reason I thought the Twitter share uses whats in the meta og:title.
Upvotes: 0
Views: 616
Reputation: 4775
You should be able to add:
data-text="Your title here"
To the button markup itself as per this documentation - ctrl+f "data-text
"
Not as clean as using the same Graph API tag but it should do the trick!
Upvotes: 2