2010-12-04 17 views
0

私はMySQLのクエリを使用してWordpressのページを作成しようとしています。ここに私の質問です。MySQLのクエリを使用したWordpressのページ作成 - 動作しません

 
INSERT INTO wp_posts (`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, '2010-11-29 14:05:04', '2010-11-29 08:05:04', 'cool.', 'Nice', '', 'publish', 'open', 'open', '', 'nice', '', '', '2010-11-29 14:05:04', '2010-11-29 08:05:04', '', 0, 'http://exampleurl.net/', 0, 'page', '', 0); 

上記のクエリを実行すると、新しいページが作成されます。私はブラウザを使用してページを移動しようと今、それは私にこの

 
Not Found 
Apologies, but the page you requested could not be found. 


NBを示しています。私は、カスタムパーマリンクを使用しています:/%カテゴリー%/%postname%。

+0

可能な重複:http://stackoverflow.com/questions/1670838/inserting-a-post-in-wordpress-using-mysql – neo2862

答えて

0

何をやっていますか?投稿を挿入するために生のSQLを使用しないで、関数wp_insert_post()を使用してください!

関連する問題