Birde form'a enctype="multipart/form-data" ekleyince sayfa bot.php'ye geçmiyor verileri yazıyor bot.php çalıştırıyor ancak geçiş yapmıyor, kodu kaldırıncada resmi çekmiyor bunu nasıl düzeltebilirim?
form kodlarım
resmi ekleme kodlarım bot.php'de olan kodlar
# Set Thumbnail
$post_id = wp_insert_post( $my_post );
require_once(ABSPATH . "wp-admin" . '/includes/image.php');
require_once(ABSPATH . "wp-admin" . '/includes/file.php');
require_once(ABSPATH . "wp-admin" . '/includes/media.php');
$attachment_id = media_handle_upload('thumbnail', $post_id);
if (!is_wp_error($attachment_id)) {
set_post_thumbnail($post_id, $attachment_id);
header("Location: " . $_SERVER['HTTP_REFERER'] . "/?files=uploaded");
}