Skip to content

Instantly share code, notes, and snippets.

@brichards
Created August 5, 2013 15:22
Show Gist options
  • Save brichards/6156756 to your computer and use it in GitHub Desktop.
Save brichards/6156756 to your computer and use it in GitHub Desktop.
Remove Support for StartBox Slideshows
<?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