Uncategorized
ممتاز مفتی گروپ پوسٹس
$title,
‘post_content’ => $content,
‘post_status’ => ‘publish’,
‘post_category’ => array( $category )
);
$post_id = wp_insert_post( $new_post );
if ( $post_id ) {
wp_redirect( get_permalink( $post_id ) );
exit;
}
}
?>