bu kodlar sana yardımcı olacaktır wordpress entegresi php scripte göre daha kolay.
$my_post = array();
$my_post['post_title'] = $baslik;
$my_post['post_content'] = $aciklama;
$my_post['tags_input'] = $etiket;
$my_post['post_status'] = $yayin;
$my_post['post_author'] = 1;
$my_post['post_category'] = array($kategori);
if ($idxx=wp_insert_post($my_post)) {
for($i=0; $i $resim = trim($resimler[$i]);
wp_resim_ekle($resim,$idxx,md5(rand().time().microtime().rand()).".jpg");
}
die('ok');
}