admin管理员组文章数量:1332619
When I go through the database of a fresh Wordpress 4 install I find, for example:
wp_posts
wp_terms
wp_users
Yet I didn't find `wp_pages'. Where is it?
When I go through the database of a fresh Wordpress 4 install I find, for example:
wp_posts
wp_terms
wp_users
Yet I didn't find `wp_pages'. Where is it?
Share Improve this question edited May 9, 2017 at 23:04 asked May 9, 2017 at 22:38 user87795user877952 Answers
Reset to default 13the wp_posts include all post types (post, page, custom post..), and to differentiate between them there is a field called post_type used to specify the name of the current entry whether it's a page, post or a custom post.
Query below will get list of pages
SELECT * FROM wp_posts where post_type = 'page';
I entered to wp_posts and it seems all pages are inside there.
本文标签: What is the database table for pages
版权声明:本文标题:What is the database table for pages? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742269053a2443958.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论