Aşağıdaki gibi deneyin bir de:

<?php

function kayit_ekle (){ 
	global $wpdb;
	
	$my_post = array(	'post_title'    => $wpdb->escape($_POST['baslik']),
						'post_content'  => $wpdb->escape($_POST['aciklama']),
						'post_status'   => 'publish',
						'post_author'   => 1,
						'post_category' => $_POST['cat']);


	wp_insert_post( $my_post );
?> 
    <div id="message" class="updated fade"><p>Kayıt eklendi! </p></div> 
<?php 
}
?>