wordpress建站如何利用mysql语法批量插入文章

2024年10月14日 建站教程

功能介绍:利用wordpress建站,如何直接在数据库中利用mysql语法批量插入文章,下面给大家简单介绍一下具体插入语法!

具体代码如下:

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 
(NULL, '1', '2023-06-27 13:33:18', '2023-06-27 05:33:18', '内容', '标题', '描述', 'publish', 'open',
 'closed', '', '32d%e62%9f%b1-3', '', '', '2023-06-27 13:33:18', '2023-06-27 05:33:18', '', '269',
 '网址/?p=269', '0', 'post', '', '0'),
(NULL, '1', '2023-06-27 13:33:18', '2023-06-27 05:33:18', '内容', '标题', '树苗', 'publish', 'open',
 'closed', '', '32d%e26%9f%b1-3', '', '', '2023-06-27 13:33:18', '2023-06-27 05:33:18', '', '270',
 '网址/?p=270', '0', 'post', '', '0'),

PS:最简单的方法就是在 wp_posts 表中复制一条数据出来,发布状态 post_status 需要注意!

本文链接:http://so.lmcjl.com/news/15381/

展开阅读全文
相关内容