Skip to content

Instantly share code, notes, and snippets.

@chetansatasiya
Last active October 30, 2017 12:30
Show Gist options
  • Select an option

  • Save chetansatasiya/6c3382c6f5b2b614a414b4073d2933e6 to your computer and use it in GitHub Desktop.

Select an option

Save chetansatasiya/6c3382c6f5b2b614a414b4073d2933e6 to your computer and use it in GitHub Desktop.
Fetch remote URL image and set to featured image in given postid in WordPress
<?php
function set_featured_image($url,$post_id) {
$attachment_id = media_sideload_image( $url, $post_id, '', 'id' );
if ( ! is_wp_error( $attachment_id ) ) {
set_post_thumbnail( $post_id, $attachment_id );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment