Skip to content

Instantly share code, notes, and snippets.

@bdeleasa
Last active February 9, 2018 18:08
Show Gist options
  • Save bdeleasa/f7321a62a0706464a4406f26a8a234ae to your computer and use it in GitHub Desktop.
Save bdeleasa/f7321a62a0706464a4406f26a8a234ae to your computer and use it in GitHub Desktop.
Dequeues the custom styling provided by Strong Testimonials.
<?php
add_filter( 'wp_enqueue_scripts', 'THEMENAME_dequeue_strong_testimonials_styles', 40 );
/**
* Dequeues the custom styling provided by Strong Testimonials.
*
* We're styling the testimonials ourselves, so we don't need their styles.
*
* @since 1.0.0
*
* @param null
* @return null
*/
function THEMENAME_dequeue_strong_testimonials_styles() {
wp_dequeue_style( 'wpmtst-custom-style' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment