Skip to content

Instantly share code, notes, and snippets.

@vovadocent
vovadocent / Upload_an_image_as_media_and_attach_it_to_some_post_if_need.php
Last active November 23, 2017 08:51
Upload an image as media and attach it to some post if need
<?php
//// upload an image as media and attach it to some post if need ////
function upload_end_attach_image($image_url, $filename, $post_id = NULL) {
$upload_dir = wp_upload_dir(); // Set upload folder
$image_data = file_get_contents($image_url); // Get image data
// Check folder permission and define file location
// Check image file type
$wp_filetype = wp_check_filetype($image_url, null);