Wordpress-Artikel per Funktion erzeugen
Samstag, November 8th, 2008Die Funktion wp_insert_post() fügt auf einfache Weise neue Artikel in eine Wordpress-Umgebung ein:
“// Create post object
$my_post = array();
$my_post['post_title'] = ‘My post’;
$my_post['post_content'] = ‘This is my post.’;
$my_post['post_status'] = ‘publish’;
$my_post['post_author'] = 1;
$my_post['post_category'] = array(0);
// Insert the post into the database
wp_insert_post( $my_post [...]