vote up 0 vote down star

Does anyone know how to insert a new post into Wordpress using sql?

flag

67% accept rate
I edited your question. If it's not what you are asking please revert it. – Charles Conway Nov 3 at 23:40

2 Answers

vote up 3 vote down check

You can use the Post object:

// Create post object
  $my_post = array();
  $my_post['post_title'] = 'My post';
  $my_post['content'] = 'This is my post.';
  $my_post['post_status'] = 'publish';
  $my_post['post_author'] = 1;
  $my_post['post_category'] = array(8,39);

// Insert the post into the database
  wp_insert_post( $my_post );

More info found here.

link|flag
And which files I have to include? Because I want to do a separate admin panel for wordpress – Uffo Nov 3 at 23:49
vote up 6 vote down

Your question asks how to insert a new post into WordPress using SQL. If you really wanted to do that, taking a look at the "wp" database tables and do a standard INSERT - this wouldn't be hard.

But I'd strongly recommend against doing this - even if you want to create a separate admin dashboard outside of the normal WP-provided one, you should use the core functions/API that they provide. For example, the wp_insert_post function is what you want to use.

I believe you can use/load these functions by including /wp-load.php.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.