Skip to content

Instantly share code, notes, and snippets.

@Benunc
Created October 7, 2016 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Benunc/533985231bbfde551d019620f628a921 to your computer and use it in GitHub Desktop.
Save Benunc/533985231bbfde551d019620f628a921 to your computer and use it in GitHub Desktop.
<?php
/*
* This snippet prevents Better Click To Tweet from enqueuing any styles at all.
* This is handy for folks who want styles to all live in their theme.
*
* This snippet is recommended to be used in a must-use plugin.
*
*/
function bctt_so_quiet_in_here () {
return;
}
add_filter('bctt_script_change', 'bctt_so_quiet_in_here');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment