Skip to content

Instantly share code, notes, and snippets.

@leobauza
Last active April 18, 2016 15:01
Show Gist options
  • Save leobauza/9a0b3268809f74c245485c74ba58e1f5 to your computer and use it in GitHub Desktop.
Save leobauza/9a0b3268809f74c245485c74ba58e1f5 to your computer and use it in GitHub Desktop.
Preprocess the node template
<?php
/**
* Implements hook_preprocess_node().
*/
function zero_preprocess_node(&$vars) {
// Replace classes array with nothing
$vars["classes_array"] = array();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment