10 lines
150 B
PHP
10 lines
150 B
PHP
|
<?php
|
||
|
|
||
|
function un_superhero_scripts()
|
||
|
{
|
||
|
wp_dequeue_script('superhero-script');
|
||
|
}
|
||
|
|
||
|
add_action('wp_enqueue_scripts', 'un_superhero_scripts', 11);
|
||
|
|