Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With the facebook iframe like button, am I able to specify what text shows up in a users stream?

When I use a plugin for a wordpress blog post it shows up at

USERNAMe likes POST TITLE on BLOG NAME

but when I try and put it on another page with the straight up iframe code, i just get:

USERNAME likes http://www.pagename.com/bla/bla/bla

How can I specify what text shows up?

share|improve this question

1 Answer

up vote 1 down vote accepted

Do you have open graph tags on your page, like:

<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
    <meta property="og:image" content="..." /> 
    <meta property="og:site_name" content="..." /> 
    <meta property="og:title" content="..." /> 
    <meta property="og:url" content="..." /> 
    <meta property="og:description" content="..." /> 
    <meta property="og:type" content="article" /> 
</head>

More about those here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.