Does anyone know how to insert a new post into Wordpress using sql?
|
|
|||
|
|
|
You can use the Post object:
More info found here. |
||
|
|
|
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. |
|||
|
|
