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.

I regret using symfony, because the simplest things are so difficult to do.

How can I set facebook meta tags such as in my layout.php file.

I've tried quiet a few things.

I know setting a title is as easy as this, but setting these meta tags is proving a challenge.

    $response = $this->getResponse();
    $response->setTitle('title');
share|improve this question

2 Answers

With just a deeper look into the code, I was able to find out that it's easier than I thought.

The documentation on this is rather lacking.

$response->addMeta("og:type","musician");

share|improve this answer

This is not accurate. Using

$response->addMeta('og:image', 'http://placehold.it/200x200');

Would output this.

<meta name="og:image" content="http://placehold.it/200x200">

It outputs the "name" instead of the proper "property" attribute.

<meta property="og:image" content="http://placehold.it/200x200">

Is there another function available in Symfony that can accomodate this?

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.