Skip to content

Instantly share code, notes, and snippets.

View jpamental's full-sized avatar

Jason Pamental jpamental

View GitHub Profile
@jpamental
jpamental / Drupal_IMG_WxH_Remove
Created January 10, 2015 23:28
Simple function to go in your template.php file to keep Drupal from inserting height/width into image tags.
function themename_preprocess_image(&$variables) {
foreach (array('width', 'height') as $key) {
unset($variables[$key]);
}
}