Skip to content

Instantly share code, notes, and snippets.

@esafwan
Created December 7, 2013 16:31
Show Gist options
  • Save esafwan/7844845 to your computer and use it in GitHub Desktop.
Save esafwan/7844845 to your computer and use it in GitHub Desktop.
<?php
function my_module_html_head_alter(&$head_elements) {
foreach ($head_elements as $key => $element) {
if (isset($element['#attributes']['rel']) && $element['#attributes']['rel'] == 'canonical') {
unset($head_elements[$key]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment