Reputation: 1445
Is it possible to pass the meta description through the Facebook like button without using the og tags? http://developers.facebook.com/docs/reference/plugins/like/
I have this tag currently
<meta name="description" content="description here" />
but i don't have access to update it to
<meta property="og:description" content="description here" />
I'd like to pass "description here" along with the title and URL. Thanks for any help.
Upvotes: 2
Views: 2631
Reputation: 1355
Have you considered the JavaScript SDK? Specifically it's worth a look at FB.ui which can be used to create the same interface as the like plugin but you can configure all of the fields. More info available at http://developers.facebook.com/
Upvotes: 2