{"id":10122,"date":"2020-10-26T15:55:00","date_gmt":"2020-10-26T15:55:00","guid":{"rendered":"https:\/\/www.qkstudio.com\/uncategorized\/wordpress-oembed-plus-embed-facebook-and-instagram-posts-easily.html"},"modified":"2021-05-25T00:50:55","modified_gmt":"2021-05-25T00:50:55","slug":"wordpress-oembed-plus-embed-facebook-and-instagram-posts-easily","status":"publish","type":"post","link":"https:\/\/www.qkstudio.com\/en\/whats-new\/wordpress-oembed-plus-embed-facebook-and-instagram-posts-easily","title":{"rendered":"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily"},"content":{"rendered":"\n<p>WordPress has long supported the incorporation of external content such as Facebook videos, Instagram photos, YouTube videos, etc. simply using the URL of the same as source.<br\/><\/p>\n\n<p><br\/>After placing on the WordPress post or page, the URL is &#8220;automagically&#8221; converted to an embedded Instagram post:<\/p>\n\n<p><\/p>\n\n<h2 class=\"wp-block-heading\">How does it work? WordPress uses oEmbed<\/h2>\n\n<p>Internally, the WordPress block editor uses the <a href=\"https:\/\/oembed.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">oEmbed<\/a>protocol and a legacy Facebook API to search for content from posts \/ photos \/ videos \/ etc. and embed the HTML in the post.<br\/><\/p>\n\n<h2 class=\"wp-block-heading\">And what happened now? As of October 24, 2020, Facebook has disapproved of the legacy oEmbed API. <\/h2>\n\n<p>The legacy API that WordPress used to get embedded content did not require any credentials, such as an access token, to function, which made it possible to embed content from Facebook and Instagram without any additional configuration and very easily for any user.<\/p>\n\n<p><\/p>\n\n<p>Due to this change, as of WordPress 5.5.1, support for Facebook and Instagram content embeds has been removed and this functionality has been delivered to a third-party plugin.<\/p>\n\n<p><\/p>\n\n<h2 class=\"wp-block-heading\">How to embed Facebook and Instagram using a plugin?<\/h2>\n\n<p>The new WordPress auto-plug <a href=\"https:\/\/wordpress.org\/plugins\/oembed-plus\" target=\"_blank\" rel=\"noreferrer noopener\">oEmbed Plus<\/a> plugin b<strong>rings back support for Facebook and Instagram oEmbed<\/strong> using the <a href=\"https:\/\/developers.facebook.com\/docs\/plugins\/oembed\" target=\"_blank\" rel=\"noreferrer noopener\">new Facebook API end points.<\/a><\/p>\n\n<p>Once installed, this plugin needs to know an access token to the Facebook application to work. You can configure the API key and secret in <strong>Admin Panel \u2192 Settings \u2192 Write.<\/strong><\/p>\n\n<h3 class=\"wp-block-heading\">Register a Facebook app<\/h3>\n\n<p>With a Facebook acccount and logged into it, head to <a href=\"https:\/\/developers.facebook.com\/apps\/\">Facebook Developer Apps list<\/a> to create a new app. Click &#8220;<em>Add a New App<\/em>&#8220;, and select &#8220;<em>For Everything Else<\/em>&#8221; for the use of it.<\/p>\n\n<h3 class=\"wp-block-heading\">Now you need to register a Facebook application<\/h3>\n\n<p>With a Facebook account and signed in, go to <a href=\"https:\/\/developers.facebook.com\/apps\/\" target=\"_blank\" rel=\"noreferrer noopener\">the list of Facebook developer applications<\/a> to create a new application. Click <strong><em>&#8220;Add a new app&#8221;<\/em><\/strong> and select <strong><em>&#8220;For everything else&#8221;<\/em><\/strong>to use it.<\/p>\n\n<p>You will need to enter a name for the application and an email. The name of the application can be any name. The name and email will not be displayed at all in the WordPress interface.<\/p>\n\n<h3 class=\"wp-block-heading\">Add oEmbed to the application<\/h3>\n\n<p>After the application is created, you must enable the oEmbed feature for the application.<\/p>\n\n<p>From the &#8220;Products&#8221; list, add <em>oEmbed<\/em> by clicking &#8220;<em>Configure<\/em>&#8220;.<\/p>\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i.php.watch\/static\/p\/21\/wordpress-facebook-ig-embed-add-oembed.jpg\" alt=\"Embedded Facebook video\"\/><\/figure>\n\n<h3 class=\"wp-block-heading\">Enter additional application details<\/h3>\n\n<p>To complete and retrieve the API keys, the application must be active and complete.<\/p>\n\n<p>The minimum requirement is to establish a privacy policy. You can use pretty much any URL as the technical aspect is considered, but use a proper privacy policy if you have one.<\/p>\n\n<h3 class=\"wp-block-heading\">Switch the app to live mode<\/h3>\n\n<p>Using the switch at the top of the page that says <em>&#8220;In development&#8221;,<\/em> you can now switch the application to live mode.<\/p>\n\n<p>You will be asked to enter additional details if something is missing.<\/p>\n\n<h3 class=\"wp-block-heading\">Get App ID and Secret and go into plugin settings<\/h3>\n\n<p>To retrieve the App ID and Secret Key, go to Settings \u2192 Basic in the Facebook app. You will see the App ID and Secret, which you can enter in the WordPress oEmbed Plus settings.<\/p>\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i.php.watch\/static\/p\/21\/wordpress-facebook-ig-embed-api-creds.jpg\" alt=\"Embedded Facebook video\"\/><\/figure>\n\n<h3 class=\"wp-block-heading\" id=\"wp-config\"><a href=\"https:\/\/php.watch\/articles\/wordpress-facebook-instagram-oembed#wp-config\">Set the application ID and secret in the configuration file<\/a><\/h3>\n\n<p><strong>As an alternative to setting the Facebook app ID and secret from the Administration settings page<\/strong>, it is also possible to set it in the <code>wp-config.php<\/code><\/p>\n\n<p>In a typical WordPress setup, the <code>wp-config.php<\/code>file contains various settings for the site. Edit this file and at the end of the file set the Facebook App ID and Secret by adding the following snippet:<\/p>\n\n<pre class=\"wp-block-code\"><code>define('OEMBED_PLUS_FACEBOOK_APP_ID', '&lt;Enter App ID Here>');  \ndefine('OEMBED_PLUS_FACEBOOK_SECRET', '&lt;Enter Secret Here>');<\/code><\/pre>\n\n<p>Replace the <code>&lt;Enter App ID Here&gt;<\/code>and <code>&lt;Enter Secret Here&gt;<\/code>fields with the actual values. Make sure to remove the <code>&lt; &gt;<\/code>markers as well. For example, a configured value would look like this:<\/p>\n\n<pre class=\"wp-block-code\"><code>define('OEMBED_PLUS_FACEBOOK_APP_ID', '123...456');  \ndefine('OEMBED_PLUS_FACEBOOK_SECRET', '123456abc...789def');<\/code><\/pre>\n\n<p>If configuration options are set in the <code>wp-config.php<\/code>, the admin panel form will be disabled and the <code>wp-config.php<\/code>configuration will take precedence over the admin panel form configuration.<\/p>\n\n<h3 class=\"wp-block-heading\">That&#8217;s it!<\/h3>\n\n<p>That&#8217;s it. Your existing embedded content will continue to work (as it is stored as rendered HTML content). New Facebook and Instagram content will use the new authenticated API.<\/p>\n\n<h3 class=\"wp-block-heading\">Fare limits<\/h3>\n\n<p>Facebook allows up to <strong>5 million requests a day.<\/strong> Once the content is embedded, the output is cached in the database and does not trigger any further requests.<\/p>\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link\" href=\"https:\/\/www.qkstudio.com\/2020\/proyectos\/mausi-sebess\">See Mausi Sebess Master Chef Education<\/a><\/div>\n<\/div>\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Mausi Sebess Education Master Chef Institute knew how to adapt to the new educational situation and together with QKStudio managed in just a few months to become the first gastronomy school in the world to offer all its content virtually.<\/p>\n","protected":false},"author":1,"featured_media":9971,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[578,555],"tags":[],"class_list":["post-10122","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-resources","category-whats-new"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WordPress oEmbed Plus: Embed Facebook and Instagram posts easily - QKStudio<\/title>\n<meta name=\"description\" content=\"The Mausi Sebess Education Master Chef Institute knew how to adapt to the new educational situation and together with QKStudio managed in just a few months to become the first gastronomy school in the world to offer all its content virtually.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily - QKStudio\" \/>\n<meta property=\"og:description\" content=\"The Mausi Sebess Education Master Chef Institute knew how to adapt to the new educational situation and together with QKStudio managed in just a few months to become the first gastronomy school in the world to offer all its content virtually.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente\" \/>\n<meta property=\"og:site_name\" content=\"QKStudio\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/qkstudio\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-26T15:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-25T00:50:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"790\" \/>\n\t<meta property=\"og:image:height\" content=\"425\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"QKStudio\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@qkstudio\" \/>\n<meta name=\"twitter:site\" content=\"@qkstudio\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente\"},\"author\":{\"name\":\"QKStudio\",\"@id\":\"https:\/\/www.qkstudio.com\/#\/schema\/person\/5cee943ec4fff5c67625ae00ad5361c3\"},\"headline\":\"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily\",\"datePublished\":\"2020-10-26T15:55:00+00:00\",\"dateModified\":\"2021-05-25T00:50:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente\"},\"wordCount\":701,\"publisher\":{\"@id\":\"https:\/\/www.qkstudio.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg\",\"articleSection\":[\"Resources\",\"What's new?\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente\",\"url\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente\",\"name\":\"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily - QKStudio\",\"isPartOf\":{\"@id\":\"https:\/\/www.qkstudio.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg\",\"datePublished\":\"2020-10-26T15:55:00+00:00\",\"dateModified\":\"2021-05-25T00:50:55+00:00\",\"description\":\"The Mausi Sebess Education Master Chef Institute knew how to adapt to the new educational situation and together with QKStudio managed in just a few months to become the first gastronomy school in the world to offer all its content virtually.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage\",\"url\":\"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg\",\"contentUrl\":\"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg\",\"width\":790,\"height\":425,\"caption\":\"WordPress oEmbed Plus\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.qkstudio.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.qkstudio.com\/#website\",\"url\":\"https:\/\/www.qkstudio.com\/\",\"name\":\"QKStudio\",\"description\":\"Productos Digitales que las personas aman usar\",\"publisher\":{\"@id\":\"https:\/\/www.qkstudio.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.qkstudio.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.qkstudio.com\/#organization\",\"name\":\"QKStudio\",\"url\":\"https:\/\/www.qkstudio.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.qkstudio.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2020\/08\/QKStudio-Logo-Color.svg\",\"contentUrl\":\"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2020\/08\/QKStudio-Logo-Color.svg\",\"width\":1,\"height\":1,\"caption\":\"QKStudio\"},\"image\":{\"@id\":\"https:\/\/www.qkstudio.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/qkstudio\",\"https:\/\/x.com\/qkstudio\",\"https:\/\/www.instagram.com\/qkstudio\/\",\"https:\/\/www.linkedin.com\/company\/qkstudio\/\",\"https:\/\/www.youtube.com\/c\/Qkstudio\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.qkstudio.com\/#\/schema\/person\/5cee943ec4fff5c67625ae00ad5361c3\",\"name\":\"QKStudio\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/8e493f6dda2ad70fb07e8b33c77905d9ea68c98ec1b31152f235bc8aa24d3532?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8e493f6dda2ad70fb07e8b33c77905d9ea68c98ec1b31152f235bc8aa24d3532?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8e493f6dda2ad70fb07e8b33c77905d9ea68c98ec1b31152f235bc8aa24d3532?s=96&d=mm&r=g\",\"caption\":\"QKStudio\"},\"url\":\"https:\/\/www.qkstudio.com\/en\/author\/qks-admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily - QKStudio","description":"The Mausi Sebess Education Master Chef Institute knew how to adapt to the new educational situation and together with QKStudio managed in just a few months to become the first gastronomy school in the world to offer all its content virtually.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente","og_locale":"en_US","og_type":"article","og_title":"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily - QKStudio","og_description":"The Mausi Sebess Education Master Chef Institute knew how to adapt to the new educational situation and together with QKStudio managed in just a few months to become the first gastronomy school in the world to offer all its content virtually.","og_url":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente","og_site_name":"QKStudio","article_publisher":"https:\/\/www.facebook.com\/qkstudio","article_published_time":"2020-10-26T15:55:00+00:00","article_modified_time":"2021-05-25T00:50:55+00:00","og_image":[{"width":790,"height":425,"url":"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg","type":"image\/jpeg"}],"author":"QKStudio","twitter_card":"summary_large_image","twitter_creator":"@qkstudio","twitter_site":"@qkstudio","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#article","isPartOf":{"@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente"},"author":{"name":"QKStudio","@id":"https:\/\/www.qkstudio.com\/#\/schema\/person\/5cee943ec4fff5c67625ae00ad5361c3"},"headline":"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily","datePublished":"2020-10-26T15:55:00+00:00","dateModified":"2021-05-25T00:50:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente"},"wordCount":701,"publisher":{"@id":"https:\/\/www.qkstudio.com\/#organization"},"image":{"@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage"},"thumbnailUrl":"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg","articleSection":["Resources","What's new?"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente","url":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente","name":"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily - QKStudio","isPartOf":{"@id":"https:\/\/www.qkstudio.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage"},"image":{"@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage"},"thumbnailUrl":"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg","datePublished":"2020-10-26T15:55:00+00:00","dateModified":"2021-05-25T00:50:55+00:00","description":"The Mausi Sebess Education Master Chef Institute knew how to adapt to the new educational situation and together with QKStudio managed in just a few months to become the first gastronomy school in the world to offer all its content virtually.","breadcrumb":{"@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#primaryimage","url":"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg","contentUrl":"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2021\/05\/facebook-oembed.jpg","width":790,"height":425,"caption":"WordPress oEmbed Plus"},{"@type":"BreadcrumbList","@id":"https:\/\/www.qkstudio.com\/blog\/wordpress-oembed-plus-incrustar-posts-de-facebook-e-instagram-facilmente#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.qkstudio.com\/"},{"@type":"ListItem","position":2,"name":"WordPress oEmbed Plus: Embed Facebook and Instagram posts easily"}]},{"@type":"WebSite","@id":"https:\/\/www.qkstudio.com\/#website","url":"https:\/\/www.qkstudio.com\/","name":"QKStudio","description":"Productos Digitales que las personas aman usar","publisher":{"@id":"https:\/\/www.qkstudio.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.qkstudio.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.qkstudio.com\/#organization","name":"QKStudio","url":"https:\/\/www.qkstudio.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.qkstudio.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2020\/08\/QKStudio-Logo-Color.svg","contentUrl":"https:\/\/www.qkstudio.com\/wp-content\/uploads\/2020\/08\/QKStudio-Logo-Color.svg","width":1,"height":1,"caption":"QKStudio"},"image":{"@id":"https:\/\/www.qkstudio.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/qkstudio","https:\/\/x.com\/qkstudio","https:\/\/www.instagram.com\/qkstudio\/","https:\/\/www.linkedin.com\/company\/qkstudio\/","https:\/\/www.youtube.com\/c\/Qkstudio"]},{"@type":"Person","@id":"https:\/\/www.qkstudio.com\/#\/schema\/person\/5cee943ec4fff5c67625ae00ad5361c3","name":"QKStudio","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8e493f6dda2ad70fb07e8b33c77905d9ea68c98ec1b31152f235bc8aa24d3532?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8e493f6dda2ad70fb07e8b33c77905d9ea68c98ec1b31152f235bc8aa24d3532?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8e493f6dda2ad70fb07e8b33c77905d9ea68c98ec1b31152f235bc8aa24d3532?s=96&d=mm&r=g","caption":"QKStudio"},"url":"https:\/\/www.qkstudio.com\/en\/author\/qks-admin"}]}},"_links":{"self":[{"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/posts\/10122","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/comments?post=10122"}],"version-history":[{"count":2,"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/posts\/10122\/revisions"}],"predecessor-version":[{"id":10124,"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/posts\/10122\/revisions\/10124"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/media\/9971"}],"wp:attachment":[{"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/media?parent=10122"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/categories?post=10122"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.qkstudio.com\/en\/wp-json\/wp\/v2\/tags?post=10122"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}