judgedred adlı üyeden alıntı: mesajı görüntüle
kod çok uzunmuş hocam, bu kısa kodu yokmu - $post_id = wp_insert_post( array(
'post_title' => $titlem, gibi
insert post için şunu kullanabilirsiniz..

/**
 * Writes new posts into wordpress programatically
 *
 * @package WordPress
 */

/** Make sure that the WordPress bootstrap has run before continuing. */
require(dirname(__FILE__) . '/wp-load.php');

global $user_ID;
$new_post = array(
'post_title' => 'My New Post',
'post_content' => 'Lorem ipsum dolor sit amet...',
'post_status' => 'publish',
'post_date' => date('Y-m-d H:i:s'),
'post_author' => $user_ID,
'post_type' => 'post',
'post_category' => array(0)
);
$post_id = wp_insert_post($new_post);