ios - 如何将 wordpress 自定义帖子集成到新的 firebase 条目?
<p><p>我目前有一个用于我公司的 wordpress 网站,用于显示我们的产品目录。</p>
<p>最近我为公司销售人员开发了一个 iOS 应用,以 firebase 作为后端,作为产品目录的数据库。</p>
<p>但现在我必须使用不同的来源来获取相同类型的数据。我想知道如何在添加新的 wordpress 帖子时使用 wordpress admin 生成新的 firebase 条目。</p>
<p>在我创建新的 wordpress 帖子时,我可以执行哪些集成数据库或某些功能的服务来创建新的 firebase 条目?</p>
<p>谢谢!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>要实现这一步,您需要在 function.php 文件(在您的 wordpress 主题上)添加一个函数,该函数将在创建新帖子时被唤醒</p>
<pre><code>function newPostCreated(){
$post_id = $post->ID;
// from here send the data to firebase
}
add_action( 'draft_to_publish', 'newPostCreated' );
</code></pre>
<p>您可以在此处找到与 Firebase 交互的 php 代码 -> <a href="https://gist.github.com/krhoyt/655a892d315167194516" rel="noreferrer noopener nofollow">https://gist.github.com/krhoyt/655a892d315167194516</a> </p>
<hr/>
<p>此系统的简单替代方案可能是 Zapier.com</p>
<p>您可以在 Wordpress 上附加一个 Zap 来检索最后一篇文章,然后,您可以添加一个操作以在 Firebase 上发送数据</p>
<p>希望对您有所帮助!</p></p>
<p style="font-size: 20px;">关于ios - 如何将 wordpress 自定义帖子集成到新的 firebase 条目?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/46014931/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/46014931/
</a>
</p>
页:
[1]