I am making a plugin that gets data from an external API and store it in the database. The reason I am going for a custom plugin is that I couldn't find any existing plugin that did what I needed. I have a function that authenticates the requests and get the desired data from the API get_latest_data()
, and it is storing the data inside the database. But the problem comes when I am trying to save images. Inside the database I can see a file being creates and inside the Media tab of WordPress Dashboard I can see a file but the images don't load or render. The following is my function that should store the image:
function save_media_as_attachment($media_url, $post_id) {
require_once(ABSPATH . "wp-admin" . '/includes/image.php');
require_once(ABSPATH . "wp-admin" . '/includes/file.php');
require_once(ABSPATH . "wp-admin" . '/includes/media.php');
if (empty($media_url)) {
return false;
}
$temp_file = download_url($media_url);
if (is_wp_error($temp_file)) {
return false;
}
$file_name = basename($media_url);
$file_extension = pathinfo($file_name, PATHINFO_EXTENSION);
$post_mime_type = 'image/jpeg'; // Default to JPEG
if (strtolower($file_extension) === 'jpg' || strtolower($file_extension) === 'jpeg') {
$post_mime_type = 'image/jpeg';
} elseif (strtolower($file_extension) === 'png') {
$post_mime_type = 'image/png';
} elseif (strtolower($file_extension) === 'mp4') {
$post_mime_type = 'video/mp4';
}
$attachment = array(
'post_title' => sanitize_file_name($file_name),
'post_content' => '',
'post_status' => 'inherit',
'post_mime_type' => $post_mime_type,
);
$attachment_id = wp_insert_attachment($attachment, $temp_file, $post_id);
if (!is_wp_error($attachment_id)) {
$attachment_data = wp_generate_attachment_metadata($attachment_id, $temp_file);
wp_update_attachment_metadata($attachment_id, $attachment_data);
update_post_meta($attachment_id, '_wp_attached_file', $file_name);
@unlink($temp_file);
return $attachment_id;
}
@unlink($temp_file);
return false;
}
I have double checked the media I am receiving from the API and the are fine. I have also checked MIME type and file permissions.
i have faced that issue on various projects. I am sharing the functions i usually use to handle this below.