Reputation: 694
Will the description field support html tags
$facebook->api("/me/feed", "post", array(
message => $des,
picture => $img,
link => $link,
caption => $title ,
description =>$desc
));
I would looking to have description as
$desc="hai to <strong>All</strong><br>I am on the nextline";
Thanks in advance
Upvotes: 0
Views: 1571
Reputation: 20753
No, facebook doesn't interpret formatting in the description field (simply shows as them you send it), and you can't place newlines. If you want to add extra links to the message you can use the properties field of the Post object.
Upvotes: 1