Skip to content

Instantly share code, notes, and snippets.

@badcrocodile
Created July 2, 2014 13:07
Show Gist options
  • Save badcrocodile/b12e0be90217a24b1992 to your computer and use it in GitHub Desktop.
Save badcrocodile/b12e0be90217a24b1992 to your computer and use it in GitHub Desktop.
<?php $image_id = get_post_thumbnail_id(); ?>
<?php $image_url = wp_get_attachment_image_src($image_id, 'medium', true); ?>
<?php $img = wp_get_image_editor($image_url[0]); ?>
<?php
if ( ! is_wp_error( $img ) ) {
$img->resize( 100, 123, true );
}
?>
<h3>HERE: </h3>
<pre>
<?php print_r($img); ?>
</pre>
<!-- http://bhoover.com/wp_image_editor-wordpress-image-editing-tutorial/ -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment