diff options
Diffstat (limited to 'functions.php')
-rw-r--r-- | functions.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/functions.php b/functions.php new file mode 100644 index 0000000..df1fa59 --- /dev/null +++ b/functions.php @@ -0,0 +1,17 @@ +<?php +/** + * @author Luke Shumaker + * @author Chris Aprea + */ + +/** + * In child themes the functions.php is applied before the parent + * theme's functions.php. So we need to wait for the parent theme to add + * it's filter before we can remove it. + */ +function kilabytes_child_theme_setup() { + // Removes the filter that adds the "singular" class to the body element + // which centers the content and does not allow for a sidebar + remove_filter( 'body_class', 'twentyeleven_body_classes' ); +} +add_action( 'after_setup_theme', 'kilabytes_child_theme_setup' ); |