Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created December 18, 2015 11:07
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 BoweFrankema/028f24bcb91386729618 to your computer and use it in GitHub Desktop.
Save BoweFrankema/028f24bcb91386729618 to your computer and use it in GitHub Desktop.
Add Default Classes to Sidebar
<?php
/**
* Add the code below to your WeFoster Child Theme
*/
function wfc_add_main_class() {
echo 'my-custom-class ';
}
add_action( 'class_main','wfc_add_main_class' );
function wfc_add_sidebar_class() {
echo 'my-custom-class ';
}
add_action( 'class_sidebar','wfc_add_sidebar_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment