1

我正在尝试在Wordpress 的 Facebook Instant Articles for WP 插件中包含一个自定义字段。

我在 wordpress 版本 4.4.2 和 php-5.6.18 上。

自定义字段是用于粘贴 youtube iframe 代码的字段,用于嵌入文章中。

任何人都可以提供有关如何在生成的插件输出中包含此自定义字段的提示或示例吗?

4

1 回答 1

2

最后在插件的支持论坛中找到了解决方案

use Facebook\InstantArticles\Elements\Video;

add_action( 'instant_articles_after_transform_post', function ($ia_post) {
    $instant_article = $ia_post->instant_article;
    $post_id = $ia_post->get_the_id();
    $video_url = get_post_meta( $post_id, 'video_url', true );
    $instant_article->addChild( Video::create()->withURL($video_url) );
} );
于 2016-04-18T12:39:44.080 回答