facebook embeded

Posted in: Newspaper
Post count: 39

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?

Post count: 6535

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/KzLWha6thttp://screencast.com/t/HnQeP4V1http://screencast.com/t/ZArUNxGh3wj

Thanks!

Post count: 14

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

https://en-support.files.wordpress.com/2013/09/facebook-embeds.gif

  • This reply was modified 10 years by Saiyan.
  • This reply was modified 10 years by Saiyan.
  • This reply was modified 10 years by Saiyan.
Post count: 39

Thanks for help. Embed FB work with posts on my site now

Post count: 14

I’m glad I was able to help. 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.