Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. private function resize_single_image($file_with_path = NULL) {
  2. if (empty($file_with_path)) return FALSE;
  3.  
  4. $image = wp_get_image_editor( $file_with_path );
  5. if ( ! is_wp_error( $image ) ) {
  6. $image->resize( 125, 125, true );
  7. $image->set_quality( 70 );
  8. $image->save( $file_with_path );
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement