Skip to content

Instantly share code, notes, and snippets.

@scottnix
Last active December 20, 2015 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottnix/6203162 to your computer and use it in GitHub Desktop.
Save scottnix/6203162 to your computer and use it in GitHub Desktop.
Remove User Agent sniffing from Thematic Theme
<?php
// remove user agent sniffing from thematic theme
// this is what applies classes to the browser type and version body classes
function childtheme_show_bc_browser() {
return FALSE;
}
add_filter('thematic_show_bc_browser', 'childtheme_show_bc_browser');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment