通过插件导入产品wp all import会在sql table post_meta增长时花费太多时间。目前已有200.000种产品进口。
有没有办法直接在没有wordpress的sql中通过csv导入产品。 (我不需要导入任何图像标题和描述)。
感谢您提前提供任何帮助。
亲切的问候 奥利弗
答案 0 :(得分:0)
您可以分两步执行SQL。
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_status`, `comment_status`, `ping_status`, `post_name`, `post_modified`, `post_modified_gmt`, `guid`, `post_type`, `comment_count`)
VALUES ([ID], [AUTHOR], '[DATE1]', '[DATE2]', '[CONTENT]', '[TITLE]', 'publish', 'open', 'open', '[POSTNAME]', '[DATE3]', '[DATE4]', '[GUID]', 'product', 0);
我建议以后使用WP ALL IMPORT更新这些记录