script (tag)
| wp_add_inline_script() | Adds additional JavaScript code to the registered script. |
| wp_dequeue_script() | Cancels the connection of a script that was previously added to the queue. |
| wp_deregister_script() | Deletes a previously registered script. |
| wp_enqueue_media() | Connects all files necessary for using the WordPress media API (file upload and selection window). The function connects scripts, styles, settings, and templates. |
| wp_enqueue_script() | Correctly connects the script (JavaScript file) to the page. |
| wp_localize_script() | Adds additional data before the specified script that is queued for output. |
| wp_register_script() | Registers a script file to later enqueue it using the function wp_enqueue_script(). |
| wp_script_add_data() | Adds data to scripts enqueued with wp_enqueue_script(). For example, when you need to output a script only for "IE 6" or "lt IE 9" (less than IE 9). |
| wp_script_is() | Determines whether the script file has been registered / added to the output queue / output to the screen. |