Hi
facebook embed link not worm in my post
i tested youtube and twitter link, they its ok, but facebook link not work ;/
wordpress should be react on the links FB.

its my exemplary post link: https://www.facebook.com/20531316728/posts/10154009990506729/
can you halp me? any idea?
Hi
Please make sure that you embedded the post according with Facebook documentation: https://developers.facebook.com/docs/plugins/embedded-posts Basically you have to paste this code http://screencast.com/t/ruH2yVQans in header.php here http://screencast.com/t/jkr8RDewbF then paste this code in post content where you want to display the post: http://screencast.com/t/KzLWha6t – http://screencast.com/t/HnQeP4V1 – http://screencast.com/t/ZArUNxGh3wj
Thanks!
Hi,
Add this code into function.php
add_action('init', function() {
$endpoints = array(
'#https?://www\.facebook\.com/video.php.*#i' => 'https://www.facebook.com/plugins/video/oembed.json/',
'#https?://www\.facebook\.com/.*/videos/.*#i' => 'https://www.facebook.com/plugins/video/oembed.json/',
'#https?://www\.facebook\.com/.*/posts/.*#i' => 'https://www.facebook.com/plugins/post/oembed.json/',
'#https?://www\.facebook\.com/.*/activity/.*#i' => 'https://www.facebook.com/plugins/post/oembed.json/',
'#https?://www\.facebook\.com/photo(s/|.php).*#i' => 'https://www.facebook.com/plugins/post/oembed.json/',
'#https?://www\.facebook\.com/permalink.php.*#i' => 'https://www.facebook.com/plugins/post/oembed.json/',
'#https?://www\.facebook\.com/media/.*#i' => 'https://www.facebook.com/plugins/post/oembed.json/',
'#https?://www\.facebook\.com/questions/.*#i' => 'https://www.facebook.com/plugins/post/oembed.json/',
'#https?://www\.facebook\.com/notes/.*#i' => 'https://www.facebook.com/plugins/post/oembed.json/'
);
foreach($endpoints as $pattern => $endpoint) {
wp_oembed_add_provider( $pattern, $endpoint, true );
}
});
for this

