X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/4feeb71a9d812a9ae371c28a3d8b442a4394ded7..607b7e02d77e7326161e8ec15639052d2040f745:/wp-includes/functions.wp-scripts.php diff --git a/wp-includes/functions.wp-scripts.php b/wp-includes/functions.wp-scripts.php index 197368c7..767d995d 100644 --- a/wp-includes/functions.wp-scripts.php +++ b/wp-includes/functions.wp-scripts.php @@ -43,15 +43,15 @@ function _wp_scripts_maybe_doing_it_wrong( $function ) { 'wp_enqueue_scripts', 'admin_enqueue_scripts', 'login_enqueue_scripts' - ), '3.3' ); + ), '3.3.0' ); } /** - * Print scripts in document head that are in the $handles queue. + * Prints scripts in document head that are in the $handles queue. * - * Called by admin-header.php and wp_head hook. Since it is called by wp_head on every page load, + * Called by admin-header.php and {@see 'wp_head'} hook. Since it is called by wp_head on every page load, * the function does not instantiate the WP_Scripts object unless script names are explicitly passed. - * Makes use of already-instantiated $wp_scripts global if present. Use provided wp_print_scripts + * Makes use of already-instantiated $wp_scripts global if present. Use provided {@see 'wp_print_scripts'} * hook to register/enqueue new scripts. * * @see WP_Scripts::do_items() @@ -107,7 +107,12 @@ function wp_add_inline_script( $handle, $data, $position = 'after' ) { _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); if ( false !== stripos( $data, '' ) ) { - _doing_it_wrong( __FUNCTION__, __( 'Do not pass script tags to wp_add_inline_script().' ), '4.5.0' ); + _doing_it_wrong( __FUNCTION__, sprintf( + /* translators: 1: #is', '$1', $data ) ); } @@ -221,7 +226,7 @@ function wp_deregister_script( $handle ) { if ( in_array( $handle, $no ) ) { $message = sprintf( __( 'Do not deregister the %1$s script in the administration area. To target the front-end theme, use the %2$s hook.' ), "$handle", 'wp_enqueue_scripts' ); - _doing_it_wrong( __FUNCTION__, $message, '3.6' ); + _doing_it_wrong( __FUNCTION__, $message, '3.6.0' ); return; } }