Skip to content

Instantly share code, notes, and snippets.

@nb
Created November 27, 2013 16:01
Show Gist options
  • Select an option

  • Save nb/7678134 to your computer and use it in GitHub Desktop.

Select an option

Save nb/7678134 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'import_original_array', function( $args ) {
if ( isset( $args['references'] ) && preg_match( '|wp-content/themes/premium|', $args['references'] ) ) {
$args['priority'] = 'hidden';
}
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment