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
}
?>
Array_filter() expects parameter 1 to be array, string given in /home/yemektar/public_html/wp-includes/post.php on line 2743
Denedim şu hatayı verdi.
Yine kayıt ekleniyor. Yine kayıt numarasını vermiyor. Kategori olarak eklenme gerçekleşmedi genel e giriş yapıldı yine...