wp_dequeue_script_module()
Unmarks the script module so it is no longer enqueued in the page.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wp_dequeue_script_module( $id );
- $id(строка) (обязательный)
- The identifier of the script module.
Список изменений
С версии 6.5.0 | Введена. |
Код wp_dequeue_script_module() wp dequeue script module WP 6.6.2
function wp_dequeue_script_module( string $id ) { wp_script_modules()->dequeue( $id ); }