Something like this in functions.php for Theme Hybrid:
add_action( 'wp_print_scripts', 'deregister_swfplayer', 100 );
function deregister_swfplayer() {
if ( !in_category( 'animation' )) {
wp_deregister_script( 'wp-swfobject' );
}
}
Thanks!
Something like this in functions.php for Theme Hybrid:
add_action( 'wp_print_scripts', 'deregister_swfplayer', 100 );
function deregister_swfplayer() {
if ( !in_category( 'animation' )) {
wp_deregister_script( 'wp-swfobject' );
}
}
Thanks!
You must log in to post.