Wp emlak temasına normal üye veya admin emlak ilanı ekleyebiliyor ama yine yönetim panelinden ilanı yayınlayı içaretlemek gerekiyor.
İlan ekleme sayfasında aşağıdaki kpdlar var Acaba buradaki status pending ten mi kaynaklanıyor.
O ise orayı ne ile değiştirmeliyim.
O değilse değişmesi gereken yer neresi.
Kod böyle
/* check the type of action */
$action = $_POST['action'];
if( $action == "add_property" ){
$new_property['post_status'] = 'pending'; // Choose: publish, pending, future, draft, etc
$property_id = wp_insert_post($new_property); // Insert Property and get Property ID
if( $property_id > 0 ){
$submitted_successfully = true;
do_action('wp_insert_post', 'wp_insert_post'); // Post the Post