diff --git src/wp-includes/functions.wp-scripts.php src/wp-includes/functions.wp-scripts.php
index 765fe92..e88a622 100644
|
|
|
function wp_print_scripts( $handles = false ) {
|
| 91 | 91 | /** |
| 92 | 92 | * Adds extra code to a registered script. |
| 93 | 93 | * |
| 94 | | * Code will only be added if the script in already in the queue. |
| 95 | | * Accepts a string $data containing the Code. If two or more code blocks |
| 96 | | * are added to the same script $handle, they will be printed in the order |
| | 94 | * Code will only be added if the script is already in the queue. |
| | 95 | * Accepts a string `$data` containing the Code. If two or more code blocks |
| | 96 | * are added to the same script `$handle`, they will be printed in the order |
| 97 | 97 | * they were added, i.e. the latter added code can redeclare the previous. |
| 98 | 98 | * |
| 99 | 99 | * @since 4.5.0 |
diff --git src/wp-includes/functions.wp-styles.php src/wp-includes/functions.wp-styles.php
index 3b7f20b..51a9049 100644
|
|
|
function wp_print_styles( $handles = false ) {
|
| 67 | 67 | /** |
| 68 | 68 | * Add extra CSS styles to a registered stylesheet. |
| 69 | 69 | * |
| 70 | | * Styles will only be added if the stylesheet in already in the queue. |
| 71 | | * Accepts a string $data containing the CSS. If two or more CSS code blocks |
| 72 | | * are added to the same stylesheet $handle, they will be printed in the order |
| | 70 | * Styles will only be added if the stylesheet is already in the queue. |
| | 71 | * Accepts a string `$data` containing the CSS. If two or more CSS code blocks |
| | 72 | * are added to the same stylesheet `$handle`, they will be printed in the order |
| 73 | 73 | * they were added, i.e. the latter added styles can redeclare the previous. |
| 74 | 74 | * |
| 75 | 75 | * @see WP_Styles::add_inline_style() |