Created
February 9, 2013 09:26
-
-
Save jeherve/4744676 to your computer and use it in GitHub Desktop.
[Jetpack] Disable Hybrid themes' Cleaner Gallery, so that Carousel and Tiled Galleries can work http://i.wpne.ws/MkjU
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 | |
/* | |
* Plugin Name: Disable Hybrid's Cleaner Gallery | |
* Plugin URI: http://wordpress.org/extend/plugins/cleaner-gallery/ | |
* Description: Disables "Cleaner Gallery", included in Hybrid themes | |
* Author: Jeremy Herve | |
* Version: 1.1 | |
* Author URI: http://jeremyherve.com | |
* License: GPL2+ | |
*/ | |
function jp_rm_cleaner_gallery() { | |
remove_theme_support( 'cleaner-gallery' ); | |
} | |
add_action ( 'after_setup_theme', 'jp_rm_cleaner_gallery', 11 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, now my theme works with tiled galleries!