Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bdeleasa/891276e2ceee0eda3d11f39aee573cb6 to your computer and use it in GitHub Desktop.
Save bdeleasa/891276e2ceee0eda3d11f39aee573cb6 to your computer and use it in GitHub Desktop.
Dequeues the stylesheet outputted by the SK Testimonials plugin.
<?php
add_action( 'wp_enqueue_scripts', 'THEMENAME_dequeue_sk_testimonials_styles', 999 );
/**
* Dequeue the SK Testimonials default stylesheet.
*
* @param none
* @return none
*/
function THEMENAME_dequeue_sk_testimonials_styles() {
wp_dequeue_style( 'skt_styles' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment