This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); |
NewerOlder