Created
August 5, 2013 15:22
-
-
Save brichards/6156756 to your computer and use it in GitHub Desktop.
Remove Support for StartBox Slideshows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Disable support for SB Slideshows | |
function remove_sb_slideshows() { | |
remove_theme_support( 'sb-slideshows' ); | |
} | |
add_action( 'after_setup_theme', 'remove_sb_slideshows' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment