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 think I might be doing something wrong. But, first, I was posting from my WordPress to my Facebook page with the new Facebook plugin. Things didn’t go very well though: no text excerpt sometimes didn't show featured image. So I disabled it from plugin, and used the API. It is posting, but now the excerpt comes with html tags, e.g.:

<p> this is a blog post</p>
<p> <em> this is the post content</em> </p>

Why is that so?

share|improve this question

1 Answer

Why is that so?

Because you are sending HTML code to Facebook …?

Strip the HTML code out, and just send the raw text. You can try and use strip_tags for that – if your HTML code is well-formed, then it should work fine. (If it’s not, though, it might strip to much.)

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.