wp_print_footer_scripts()WP 2.8.0

Hooks to print the scripts and styles in the footer.

Хуки из функции

Возвращает

null. Ничего (null).

Использование

wp_print_footer_scripts();

Список изменений

С версии 2.8.0 Введена.

Код wp_print_footer_scripts() WP 6.5.2

function wp_print_footer_scripts() {
	/**
	 * Fires when footer scripts are printed.
	 *
	 * @since 2.8.0
	 */
	do_action( 'wp_print_footer_scripts' );
}