Skip to content

Instantly share code, notes, and snippets.

@wpsmith
Created November 19, 2012 01:41
Show Gist options
  • Save wpsmith/4108522 to your computer and use it in GitHub Desktop.
Save wpsmith/4108522 to your computer and use it in GitHub Desktop.
PHP: Dequeue Soliloquy Style
<?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