Skip to content

Instantly share code, notes, and snippets.

@elimn
Last active May 29, 2017 14:16
Show Gist options
  • Save elimn/5dbe1ce37b976a4f67489bff0bedfd9b to your computer and use it in GitHub Desktop.
Save elimn/5dbe1ce37b976a4f67489bff0bedfd9b to your computer and use it in GitHub Desktop.
MT | Common | Example for removing an asset enqueued by Tribe__Assets
<?php
/**
* Example for removing tribe-jquery-ui-theme from being registered
*
* @see https://theeventscalendar.com/extensions/dequeue-assets/
*/
function tribe_remove_assets() {
Tribe__Assets::instance()->remove( 'tribe-jquery-ui-theme' );
}
add_action( 'init', 'tribe_remove_assets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment