Skip to content

Instantly share code, notes, and snippets.

View andremetzen's full-sized avatar

Andre Metzen andremetzen

View GitHub Profile
@mesaque
mesaque / disableimagecrop.php
Last active August 2, 2018 13:27
Disable image crop
<?php
defined( 'ABSPATH' ) or exit;
/* Plugin Name: Disable image crop */
$custom_sizes = array('thumbnail'=>'150x150', 'medium'=>'210x300');
add_filter( 'image_resize_dimensions', 'apikiDisableCrop', 10, 6 );
function apikiDisableCrop( $enable, $orig_w, $orig_h, $dest_w, $dest_h, $crop )
{
return false;