WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 640 | * allow custom scripts from plugins. |
| 641 | * |
| 642 | * @since 3.9.0 |
| 643 | */ |
| 644 | public function print_scripts() { |
| 645 | /** This action is documented in wp-admin/admin-header.php */ |
| 646 | do_action( 'admin_print_scripts-widgets.php' ); |
| 647 | |
| 648 | /** This action is documented in wp-admin/admin-header.php */ |
| 649 | do_action( 'admin_print_scripts' ); |
| 650 | } |
| 651 | |
| 652 | /** |
| 653 | * Enqueues scripts and styles for Customizer panel and export data to JavaScript. |
| 654 | * |
| 655 | * @since 3.9.0 |
| 656 | * |
| 657 | * @global WP_Scripts $wp_scripts |
| 658 | * @global array $wp_registered_sidebars |