Created
July 2, 2014 13:07
-
-
Save badcrocodile/b12e0be90217a24b1992 to your computer and use it in GitHub Desktop.
This file contains 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 $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