wp_collaboration_inject_setting()wp-includes/collaboration.php | Injects the real-time collaboration setting into a global variable.
|
wp_options_connectors_wp_admin_preload_data()wp-includes/build/pages/options-connectors/page-wp-admin.php | Preload REST API data for the options-connectors-wp-admin page.
|
wp_options_connectors_wp_admin_enqueue_scripts()wp-includes/build/pages/options-connectors/page-wp-admin.php | Enqueue scripts and styles for the options-connectors-wp-admin page.
|
wp_options_connectors_preload_data()wp-includes/build/pages/options-connectors/page.php | Preload REST API data for the options-connectors page.
|
wp_options_connectors_render_page()wp-includes/build/pages/options-connectors/page.php | Render the options-connectors page.
|
wp_font_library_render_page()wp-includes/build/pages/font-library/page.php | Render the font-library page.
|
wp_font_library_wp_admin_preload_data()wp-includes/build/pages/font-library/page-wp-admin.php | Preload REST API data for the font-library-wp-admin page.
|
wp_font_library_wp_admin_enqueue_scripts()wp-includes/build/pages/font-library/page-wp-admin.php | Enqueue scripts and styles for the font-library-wp-admin page.
|
wp_font_library_preload_data()wp-includes/build/pages/font-library/page.php | Preload REST API data for the font-library page.
|
_wp_enqueue_auto_register_blocks()wp-includes/blocks.php | Exposes blocks with autoRegister flag for ServerSideRender in the editor.
|
wp_enqueue_command_palette_assets()wp-includes/script-loader.php | Enqueues the assets required for the Command Palette.
|
wp_attach_theme_preview_middleware()wp-includes/theme-previews.php | Adds a middleware to apiFetch to set the theme for the preview.
|
block_editor_rest_api_preload()wp-includes/block-editor.php | Preloads common data used with the block editor by specifying an array of REST API paths that will be preloaded for a given block editor context.
|
enqueue_editor_block_styles_assets()wp-includes/script-loader.php | Function responsible for enqueuing the assets required for block styles functionality on the editor.
|
the_block_editor_meta_boxes()wp-admin/includes/post.php | Renders the meta boxes forms.
|
WP_Privacy_Policy_Content::notice()wp-admin/includes/class-wp-privacy-policy-content.php | Adds a notice with a link to the guide when editing the privacy policy page.
|
wp_enqueue_code_editor()wp-includes/general-template.php | Enqueues assets needed by the code editor for the given settings.
|
WP_Widget_Media_Gallery::enqueue_admin_scripts()wp-includes/widgets/class-wp-widget-media-gallery.php | Loads the required media files for the media manager and scripts for media widgets.
|
WP_Widget_Custom_HTML::enqueue_admin_scripts()wp-includes/widgets/class-wp-widget-custom-html.php | Loads the required scripts and styles for the widget control.
|
WP_Widget_Text::enqueue_admin_scripts()wp-includes/widgets/class-wp-widget-text.php | Loads the required scripts and styles for the widget control.
|
WP_Widget_Media_Audio::enqueue_admin_scripts()wp-includes/widgets/class-wp-widget-media-audio.php | Loads the required media files for the media manager and scripts for media widgets.
|
WP_Widget_Media_Video::enqueue_admin_scripts()wp-includes/widgets/class-wp-widget-media-video.php | Loads the required scripts and styles for the widget control.
|
WP_Widget_Media_Image::enqueue_admin_scripts()wp-includes/widgets/class-wp-widget-media-image.php | Loads the required media files for the media manager and scripts for media widgets.
|
wp_localize_jquery_ui_datepicker()wp-includes/script-loader.php | Localizes the jQuery UI datepicker.
|
WP_Customize_Widgets::enqueue_scripts()wp-includes/class-wp-customize-widgets.php | Enqueues scripts and styles for Customizer panel and export data to JavaScript.
|
Apparently we should now use
wp_add_inline_scriptinstead ofwp_localize_scriptto expose a global object that needs to be used by your script.So, while previously you could (and still can) do this:
It seems that it’s now recommended to do it like this (which I personally believe is a lot uglier):
Note that you need to add
'before'as the third parameter to thewp_add_inline_scriptfunction.Now, in your JS script you can access these PHP parameters like this:
The following code can be used to easily add Typekit’s JavaScript to your theme:
Which results in:
From https://make.wordpress.org/core/2016/03/08/enhanced-script-loader-in-wordpress-4-5/
Add CSS Style without dependency
Add JavaScript Code without dependency
Add JavaScript Code with jQuery dependency
NOTE: with new block themes such as Twenty Twenty Two,
wp_localize_script/wp_add_inline_scriptwill no longer work if called too late such as in a shortcode rendering callback function. To achieve this you will need to make use of an anonymous function call hooked on wp_footer action,this is handy function when you want to make sure your anonymous function uses an object that is instantiated using a javascript library that can potentially clash with other versions loaded by other plugins or by WordPress core itself. For example, if you need to use a different version of jQuery, you can do the following,
this will instantiate a new jQuery object `jquery3_2_1` right after the jquery library v3.2.1 is loaded by the browser, ensuring it has the right version references, which you can then pass as an attribute the `js.js` script,
If you are adding an inline script to the editor in the new recommended way (see: https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/), then it’s important to note that calling `wp_add_inline_script() ` twice will duplicate the inline script code.
For example, if you want to add an inline script to both the editor itself and the editor content (in an iframed editor), then you should (using the recommendation) enqueue the same script with both `enqueue_block_editor_assets` and `enqueue_block_assets`. However, in this case make sure to only call `wp_add_inline_script() ` once to avoid script duplication (the registration and source code stick around even though the queue gets cleared out between the editor and editor content enqueuing).
You can check for prior registration and also enqueue with something like this:
“`php
if ( ! wp_script_is( $handle, ‘registered’ ) ) {
wp_register_script( $handle, false );
wp_add_inline_script( $handle, $src );
}
wp_enqueue_script( $handle, ”, $deps, false, $args );
“`
For adding inline script
For jQuery-dependent scripts use this: