wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_dequeue_script_module › WordPress Function

Seit6.5.0
Veraltetn/v
wp_dequeue_script_module ( $id )
Parameter:
  • (string) $id The identifier of the script module.
    Erforderlich: Ja
Definiert in:
Codex:

Unmarks the script module so it is no longer enqueued in the page.



Quellcode

function wp_dequeue_script_module( string $id ) {
	wp_script_modules()->dequeue( $id );
}