Created
November 19, 2012 01:41
-
-
Save wpsmith/4108522 to your computer and use it in GitHub Desktop.
PHP: Dequeue Soliloquy Style
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 | |
add_action( 'tgmsp_before_slider_output', 'wps_remove_soliloquy_style' ); | |
/** | |
* Remove Soliloquy Style | |
* | |
* @uses wp_dequeue_style() Remove a CSS file that was enqueued with wp_enqueue_style(). | |
*/ | |
function wps_remove_soliloquy_style() { | |
wp_dequeue_style( 'soliloquy-style' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment