print_head_scripts()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
print_head_scripts(): string[]
Описание
Откладывает скрипты, поставленные в очередь для подвала.
print_footer_scripts() вызывается в подвале для вывода этих скриптов.
См. alsowp_print_scripts()
Оригинал (английский)
Postpones the scripts that were queued for the footer.
print_footer_scripts() is called in the footer to print these scripts.
Возвращаемое значение
string[]
Исходный код
wp-includes/script-loader.php:2147
function print_head_scripts() {
global $concatenate_scripts;
if ( ! did_action( 'wp_print_scripts' ) ) {
/** This action is documented in wp-includes/functions.wp-scripts.php */
do_action( 'wp_print_scripts' );
}
$wp_scripts = wp_scripts();
script_concat_settings();
$wp_scripts->do_concat = $concatenate_scripts;
$wp_scripts->do_head_items();
/**
* Filters whether to print the head scripts.
*
* @since 2.8.0
*
* @param bool $print Whether to print the head scripts. Default true.
*/
if ( apply_filters( 'print_head_scripts', true ) ) {
_print_scripts();
}
$wp_scripts->reset();
return $wp_scripts->done;
}
История изменений
| Версия | Описание |
|---|---|
| 2.8.0 | Introduced. |

