是否在外部脚本中使用POST_EXISTS()? 时间:2017-12-14 作者:Lehtis 我使用此代码从外部脚本导入帖子。https://gist.github.com/davejamesmiller/bc9d443da989c6692441这是可行的,但我需要检查一个柱子是否存在。所以我想使用post\\u exists()。if(post_exists("test") > 0) { } 我遇到了以下错误:Fatal error: Uncaught Error: Call to undefined function post_exists() 是否可以签入帖子的外部脚本? 1 个回复 最合适的回答,由SO网友:Elex 整理而成 post_exists() 不存在,因为您忘记包含声明函数的文件。期待https://developer.wordpress.org/reference/functions/post_exists/#source 你可以看到它在wp-admin/includes/post.php 仅在require 分类学。require_once ABSPATH . \'/wp-admin/includes/post.php\'; 在我看来,实现您想要的最好方法是使用wp api! 结束 文章导航