Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save eri-trabiccolo/fe51ed4dbd9ac5606656 to your computer and use it in GitHub Desktop.

Select an option

Save eri-trabiccolo/fe51ed4dbd9ac5606656 to your computer and use it in GitHub Desktop.
Change header's social block class
add_filter('tc_social_header_block_class', 'my_social_header_block_class', 20);
function my_social_header_block_class( $classes ){
return str_replace('span5', 'span1', $classes); /* From 5 columns to 1 column*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment