Last active
May 29, 2017 14:16
-
-
Save elimn/5dbe1ce37b976a4f67489bff0bedfd9b to your computer and use it in GitHub Desktop.
MT | Common | Example for removing an asset enqueued by Tribe__Assets
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 | |
/** | |
* 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