Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Last active August 29, 2015 14:13
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 eri-trabiccolo/213f22fd714cdf514d32 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/213f22fd714cdf514d32 to your computer and use it in GitHub Desktop.
Change left sidebar classes
add_filter('tc_left_sidebar_class', 'my_left_sidebar_class');
function my_left_sidebar_class($classes){
return str_replace('span4', 'span2', $classes);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment