程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> wordpress-4.4.1 數據庫表結構解析,wordpress數據庫結構

wordpress-4.4.1 數據庫表結構解析,wordpress數據庫結構

編輯:關於PHP編程

wordpress-4.4.1 數據庫表結構解析,wordpress數據庫結構


wordpress-4.4.1.zip 安裝包 

 

 

SQL結構 :

 

 

wp_commentmeta  :文章評論額外信息表。

 

CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

 

wp_comments :文章評論信息表。

 

comment_ID – 每個評論的唯一ID號,是一個bigint(20)值。帶有附加屬性auto_increment。

comment_post_ID – 每個評論對應的文章的ID號,int(11)值,等同於wp_posts.ID。

comment_author – 每個評論的評論者名稱,tinytext值。

comment_author_email – 每個評論的評論者電郵地址,varchar(100)值。

comment_author_url – 每個評論的評論者網址,varchar(200)值。

comment_author_IP – 每個評論的評論者的IP地址,varchar(100)值。

comment_date – 每個評論發表的時間,datetime值(是加上時區偏移量後的值)。

comment_date_gmt – 每個評論發表的時間,datetime值(是標准的格林尼治時間)。

comment_content – 每個評論的具體內容,text值。

comment_karma – 不詳,int(11)值,默認為0。

comment_approved – 每個評論的當前狀態,為一個枚舉值enum(’0′,’1′,’spam’),0為等待審核,1為允許發布,spam為垃圾評論。默認值為1。

comment_agent – 每個評論的評論者的客戶端信息,varchar(255)值,主要包括其浏覽器和操作系統的類型、版本等資料。

comment_type – 評論的類型,varchar(20)值。

comment_parent – 某一評論的上級評論,int(11)值,對應wp_comment.ID,默認為0,即無上級評論。

user_id – 某一評論對應的用戶ID,只有當用戶注冊後才會生成,int(11)值,對應wp_users.ID。未注冊的用戶,即外部評論者,這個ID的值為0。

 

 

CREATE TABLE IF NOT EXISTS `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

 

wp_links :用於保存用戶輸入到Wordpress中的鏈接的表。

 

link_id – 每個鏈接的唯一ID號,bigint(20)值,附加屬性為auto_increment。

link_url – 每個鏈接的URL地址,varchar(255)值,形式為http://開頭的地址。

link_name – 單個鏈接的名字,varchar(255)值。

link_image – 鏈接可以被定義為使用圖片鏈接,這個字段用於保存該圖片的地址,為varchar(255)值。

link_target – 鏈接打開的方式,有三種,_blank為以新窗口打開,_top為就在本窗口中打開並在最上一級,none為不選擇,會在本窗口中打開。這個字段是varchar(25)值。

link_category – 某個鏈接對應的鏈接分類,為int(11)值。相當於wp_linkcategories.cat_id。

link_description – 鏈接的說明文字。用戶可以選擇顯示在鏈接下方還是顯示在title屬性中。varchar(255)值。

link_visible – 該鏈接是否可以,枚舉enum(’Y’,’N’)值,默認為Y,即可見。

link_owner – 某個鏈接的創建人,為一int(11)值,默認是1。(應該對應的就是wp_users.ID)

link_rating – 鏈接的等級,int(11)值。默認為0。

link_updated – 鏈接被定義、修改的時間,datetime值。

link_rel – 鏈接與定義者的關系,由XFN Creator設置,varchar(255)值。

link_notes – 鏈接的詳細說明,mediumtext值。

link_rss – 該鏈接的RSS地址,varchar(255)值。

 

CREATE TABLE IF NOT EXISTS `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

 

wp_options: 用於保存Wordpress相關設置、參數的表。基本配置信息表,通常通過get_option來操作,該表通常作為插件存儲數據的一個地方。是用來存儲 WordPress 中所有全局選項的數據表。

 

option_id – 選項的ID,bigint(20)值,附加auto_increment屬性。

option_name – 選項名稱,varchar(64)值。

option_value – 選項的值,longtext值。

autoload – 選項是否每次都被自動加載,枚舉enum(’yes’,’no’)值,默認為yes。

 

CREATE TABLE IF NOT EXISTS `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=156 ;

 

wp_postmeta: 用於保存文章的元信息(meta)的表。文章額外數據表,例如文章浏覽次數,文章的自定義字段等都存儲在這裡。

 

meta_id – 元信息ID,bigint(20)值,附加屬性為auto_increment。

post_id – 文章ID,bigint(20)值,相當於wp_posts.ID。

meta_key – 元信息的關鍵字,varchar(255)值。

meta_value – 元信息的值,text值。

這 些內容主要是在文章及頁面編輯頁(Write Post, Write Page)的”Add a new custom field to this post(page):”下進行設定的。meta_key就對應名為”key”的下拉列表中的項,而值由用戶自己填上(某些時候,wp也會自動加入,如文 章中有的音頻媒體)。

 

CREATE TABLE IF NOT EXISTS `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

 

INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default');

 

 

wp_posts: 用於保存你所有的文章(posts)的相關信息的表。文章信息表,包括了日志、附件、頁面等等信息,是WordPress最重要的一個數據表。

 

ID – 每篇文章的唯一ID,bigint(20)值,附加屬性auto_increment。

post_author – 每篇文章的作者的編號,int(4)值,應該對應的是wp_users.ID。

post_date – 每篇文章發表的時間,datetime值。它是GMT時間加上時區偏移量的結果。

post_date_gmt – 每篇文章發表時的GMT(格林威治)時間,datetime值。

post_content – 每篇文章的具體內容,longtext值。你在後台文章編輯頁面中寫入的所有內容都放在這裡。

post_title – 文章的標題,text值。

post_category – 文章所屬分類,int(4)值。

post_excerpt – 文章摘要,text值。

post_status – 文章當前的狀態,枚舉enum(’publish’,’draft’,’private’,’static’,’object’)值,publish為已 發表,draft為草稿,private為私人內容(不會被公開) ,static(不詳),object(不詳)。默認為publish。

comment_status – 評論設置的狀態,也是枚舉enum(’open’,’closed’,’registered_only’)值,open為允許評論,closed為不允 許評論,registered_only為只有注冊用戶方可評論。默認為open,即人人都可以評論。

ping_status – ping狀態,枚舉enum(’open’,’closed’)值,open指打開pingback功能,closed為關閉。默認值是open。

post_password – 文章密碼,varchar(20)值。文章編輯才可為文章設定一個密碼,憑這個密碼才能對文章進行重新強加或修改。

post_name – 文章名,varchar(200)值。這通常是用在生成permalink時,標識某篇文章的一段文本或數字,也即post slug。
to_ping – 強制該文章去ping某個URI。text值。

pinged – 該文章被pingback的歷史記錄,text值,為一個個的URI。

post_modified – 文章最後修改的時間,datetime值,它是GMT時間加上時區偏移量的結果。

post_modified_gmt – 文章最後修改的GMT時間,datetime值。

post_content_filtered – 不詳,text值。

post_parent – 文章的上級文章的ID,int(11)值,對應的是wp_posts.ID。默認為0,即沒有上級文章。

guid – 這是每篇文章的一個地址,varchar(255)值。默認是這樣的形式: http://your.blog.site/?p=1,如果你形成permalink功能,則通常會是: 你的Wordpress站點地址+文章名。

menu_order – 不詳,int(11)值,默認為0。

post_type – 文章類型,具體不詳,varchar(100)值。默認為0。

post_mime_type – 不詳。varchar(100)值。

comment_count – 評論計數,具體用途不詳,bigint(20)值。

 

CREATE TABLE IF NOT EXISTS `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

  

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2016-04-03 08:48:29', '2016-04-03 00:48:29', '歡迎使用WordPress。這是您的第一篇文章。編輯或刪除它,然後開始寫作吧!', '世界,您好!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2016-04-03 08:48:29', '2016-04-03 00:48:29', '', 0, 'http://localhost:8081/?p=1', 0, 'post', '', 1),
(2, 1, '2016-04-03 08:48:29', '2016-04-03 00:48:29', '這是一個范例頁面。它和博客文章不同,因為它的頁面位置是固定的,同時會顯示於您的博客導航欄(大多數主題中)。大多數人會新增一個“關於”頁面向訪客介紹自己。它可能類似下面這樣:\n\n<blockquote>我是一個很有趣的人,我創建了工廠和莊園。並且,順便提一下,我的妻子也很好。</blockquote>\n\n……或下面這樣:\n\n<blockquote>XYZ裝置公司成立於1971年,公司成立以來,我們一直向市民提供高品質的裝置。我們位於北京市,有超過2,000名員工,對北京市有著相當大的貢獻。</blockquote>\n\n作為一個新的WordPress用戶,您可以前往<a href="http://localhost:8081/wp-admin/">您的儀表盤</a>刪除這個頁面,並建立屬於您的全新內容。祝您使用愉快!', '示例頁面', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2016-04-03 08:48:29', '2016-04-03 00:48:29', '', 0, 'http://localhost:8081/?page_id=2', 0, 'page', '', 0),
(3, 1, '2016-04-03 08:58:06', '0000-00-00 00:00:00', '', '自動草稿', '', 'auto-draft', 'open', 'open', '', '', '', '', '2016-04-03 08:58:06', '0000-00-00 00:00:00', '', 0, 'http://localhost:8081/?p=3', 0, 'post', '', 0),
(4, 1, '2016-04-03 09:00:50', '0000-00-00 00:00:00', '', '自動草稿', '', 'auto-draft', 'open', 'open', '', '', '', '', '2016-04-03 09:00:50', '0000-00-00 00:00:00', '', 0, 'http://localhost:8081/?p=4', 0, 'post', '', 0);

 


wp_termmeta :分類與文章信息表(wp_posts)、鏈接表(wp_links)的關聯表。

 

CREATE TABLE IF NOT EXISTS `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

 

wp_terms :文章分類、鏈接分類、標簽的信息表。

 

CREATE TABLE IF NOT EXISTS `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

 

INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, '未分類', 'uncategorized', 0);

 

 wp_term_relationships :分類與文章信息表(wp_posts)、鏈接表(wp_links)的關聯表。

 

CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

 

 wp_term_taxonomy :分類信息表,區分wp_terms信息的分類類型,有category、link_category和tag三種分類類型。

 

CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

 

INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1);

 

 wp_usermeta : 用於保存用戶元信息(meta)的表。

 

umeta_id – 元信息ID,bigint(20)值,附加屬性auto_increment。

user_id – 元信息對應的用戶ID,bigint(20)值,相當於wp_users.ID。

meta_key – 元信息關鍵字,varchar(255)值。

meta_value – 元信息的詳細值,longtext值。

 

CREATE TABLE IF NOT EXISTS `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;

 

INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'souvc'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', ''),
(13, 1, 'show_welcome_panel', '1'),
(14, 1, 'session_tokens', 'a:2:{s:64:"863288c6d33f046c578de0cafee38ec3b49a0ca4e078088b0065cbafcdd06d3c";a:4:{s:10:"expiration";i:1459817885;s:2:"ip";s:3:"::1";s:2:"ua";s:72:"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0";s:5:"login";i:1459645085;}s:64:"310725109de88bde9eb342337323927d2af5e6c98b5662f715dd1acc1697609f";a:4:{s:10:"expiration";i:1459830580;s:2:"ip";s:3:"::1";s:2:"ua";s:72:"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0";s:5:"login";i:1459657780;}}'),
(15, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(16, 1, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";i:4;s:15:"title-attribute";}'),
(17, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:"add-post_tag";i:1;s:15:"add-post_format";}'),
(18, 1, 'wp_user-settings', 'mfold=o'),
(19, 1, 'wp_user-settings-time', '1459658009');

 

 wp_users:用於保存Wordpress使用者的相關信息的表。

 

ID – 用戶唯一ID,bigint(20)值,帶附加屬性auto_increment。

user_login – 用戶的注冊名稱,varchar(60)值。

user_pass – 用戶密碼,varchar(64)值,這是經過加密的結果。好象用的是不可逆的MD5算法。

user_nicename – 用戶昵稱,varchar(50)值。

user_email – 用戶電郵地址,varchar(100)值。

user_url – 用戶網址,varchar(100)值。

user_registered – 用戶注冊時間,datetime值。

user_activation_key – 用戶激活碼,不詳。varchar(60)值。

user_status – 用戶狀態,int(11)值,默認為0。

display_name – 來前台顯示出來的用戶名字,varchar(250)值。

 

CREATE TABLE IF NOT EXISTS `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

 

INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'souvc', '$P$B1X3tpz3DDAzQInF0pTRXff8PxMZ6R0', 'souvc', '[email protected]', '', '2016-04-03 00:48:29', '', 0, 'souvc');

 

 

參考:

http://blog.csdn.net/liujiyong7/article/details/8042132

http://zmingcx.com/wordpress-database-tdescription.html

http://blog.csdn.net/liujiyong7/article/details/8037843

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved