Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试构建我的自定义脚本,我需要从 wordpress 数据库中检索数据。我必须在数据库中获取帖子内容,但是当我浏览 phpmyadmin 中的 wp_posts 表时,我看到有很多行内容基本相同,保存的草稿,自动保存的帖子等等。
所以我想要的是一个 SQL 命令,它将为我提供已发布帖子的内容并忽略所有草稿和已保存的帖子。它基本上是 wordpress 在显示帖子时使用的命令(它显示最终发布的帖子)。
希望我足够清楚。
select * from wp_posts where post_status = 'publish' and post_type = 'post'