Online Forum To Support Coders With Technical Assistance - Read Write Execute

How to crop image in wordpress?

Ankit Agrawal
Ankit Agrawal
Published on January 7, 2016 · 1 min read

Please try below code.

<?php 
$img = 'full image path'; //img URL 
$crop_image = aq_resize( $img, 352, 264, true ); // get crop image 
?> 
<img src="<?php echo $crop_image ?>" > 
Was this article helpful?
Ankit Agrawal

Ankit Agrawal

Author & Senior Engineer at CodeExecute

Writing practical engineering guides, debugging real-world bottlenecks, and creating free tools for developer productivity.

← Previous Article Execute big select query in mysql Next Article → How to set a image vertically center align inside div