最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Show Gutenberg facebook embed with a custom theme

programmeradmin2浏览0评论

I'm working on a custom theme, and I would like to display the facebook embed from Gutenberg in Wordpress. I've done parse_blocks and then printing the block displays just the facebook url.

// page-home.php
$post = get_post();
if (has_blocks($post->post_content)) {
  $blocks = parse_blocks($post->post_content);
  foreach($blocks as $block){
    if ($block[blockName] === 'core/embed/facebook') {
      // starting to get stuck here...
    }
  }
}

How do I display the facebook embed?

发布评论

评论列表(0)

  1. 暂无评论