WordPress data sheet description

wp_commentmeta: Used to save the meta-information of the comment. When the comment is put into the recycle bin, the data will be put into this table, and plugins such as Akismet will also generate the data in this table. This table is not important
wp_comments: The table used to save comment information
wp_links: The table used to save the link entered by the user into Wordpress (via Link Manager)
wp_options: The table used to save Wordpress related settings and parameters, which contains a lot of important information
wp_postmeta: Used to save the meta information of the article (meta) table
wp_posts: Used to save all of your article related information, very important. Generally, it stores the most data
wp_terms: article and link classification and article tag classification can be found in the table
wp_term_relationships: the log and the category and tag in wp_terms are combined and stored in the wp_terms_relationships table. Category-related links are also stored in wp_terms_relationships
wp_term_taxonomy: This table describes the category (category, link, and label) of the entries in the wp_terms table: Table
wp_usermetaused to store user meta information (meta)
wp_users: used to store relevant information about Wordpress users table

wp_commentmeta

key value
meta_id Self-incrementing unique ID
comment_id Corresponding comment ID
meta_key Key name
meta_value Key value

wp_comments

key value
comment_ID Self-incrementing unique ID
comment_post_ID Corresponding article ID
comment_author Comment by
comment_author_email Commenter Email
comment_author_url Commenter URL
comment_author_IP Commenter IP
comment_date Comment time
comment_date_gmt Comment time (GMT+0 time)
comment_content Comment body
comment_karma unknown
comment_approved Whether the comment is approved
comment_agent Commenter's USER AGENT
comment_type Comment type (pingback/normal)
comment_parent Parent comment ID
user_id Commenter user ID (may not exist)

wp_links

key value
link_id Self-incrementing unique ID
link_url Link URL
link_name Link title
link_image Link image
link_target Link open method
link_description Link description
link_visible Is it visible (Y/N)
link_owner Adder user ID
link_rating Rating level
link_updated unknown
link_rel XFN relationship
link_notes XFN notes
link_rss Link to RSS address

wp_options

key value
option_id Self-incrementing unique ID
blog_id Blog ID, used for multi-user blogs, default 0
option_name Key name
option_value Key value
autoload Load automatically when WordPress loads (yes/no)

wp_postmeta

key value
meta_id Self-incrementing unique ID
post_id Corresponding article ID
meta_key Key name
meta_value Key value

wp_posts

key value
ID Self-incrementing unique ID
post_author Corresponding author ID
post_date release time
post_date_gmt Release time (GMT+0 time)
post_content text
post_title title
post_excerpt extract
post_status Article status (publish/auto-draft/inherit, etc.)
comment_status Comment status (open/closed)
ping_status PING status (open/closed)
post_password Article password
post_name Article abbreviation
to_ping unknown
tensions PING link
post_modified Change the time
post_modified_gmt Modification time (GMT+0 time)
post_content_filtered unknown
post_parent Parent article, mainly used for PAGE
guid unknown
menu_order Sort ID
post_type Article type (post/page, etc.)
post_mime_type MIME类型
comment_count 评论总数

wp_terms

term_id 分类ID
name 分类名
slug 缩略名
term_group 未知

wp_term_relationships

object_id 对应文章ID/链接ID
term_taxonomy_id 对应分类方法ID
term_order 排序

wp_term_taxonomy

term_taxonomy_id 分类方法ID
term_id taxonomy
description 未知
parent 所属父分类方法ID
count 文章数统计

wp_usermeta

umeta_id 自增唯一ID
user_id 对应用户ID
meta_key 键名
meta_value 键值

wp_users

ID 自增唯一ID
user_login 登录名
user_pass 密码
user_nicename 昵称
user_email Email
user_url 网址
user_registered 注册时间
user_activation_key 激活码
user_status 用户状态
display_name 显示名称

Guess you like

Origin blog.csdn.net/weixin_44797182/article/details/112760626