Wordpress Facebook即时文章没有看到我们的文章/内容

时间:2018-03-08 16:15:55

标签: wordpress facebook facebook-instant-articles

在社群驳回此事之前 - 这不是Facebook提交流程的其他问题的重复。是非营利组织寻求帮助实现这一目标。

我们网站上有很多文章,但我们无法让它们出现在https://childmind.org/feed/instant-articles

我无法看到您在哪里指示FB Instant Articles WordPress插件要发布的内容,例如我们的文章不在/博客中,而是在/文章中,例如https://childmind.org/article/adhd-behavior-problems/

其他一切看似正确。有没有人有想法?

在我们收到Feed中的文章后,我们可以提交审核。

注意:我们已经编辑并保存文章到"触发"他们被添加但没有工作。

1 个答案:

答案 0 :(得分:0)

文章听起来像一个自定义帖子类型,您需要通过使用CPT过滤器手动告诉插件。

add_filter( 'instant_articles_post_types', 'add_post_types', 10,1 );
function add_post_types($post_type_array){
    array_push($post_type_array,'post'); // Standard post "blog"
    array_push($post_type_array,'articles'); // The name of your custom post.
    return $post_type_array;
}

只要其他所有内容都已正确设置,就可以获取Feed的文章。摘自WP Plugin forum.

上的帖子

注意:此外,一旦你开始在Facebook上看到它们,Facebook就会有自己的验证过程。