wp_print_footer_scripts

The timeline below displays how wordpress function wp_print_footer_scripts has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 3.9

/**
 * Hooks to print the scripts and styles in the footer.
 *
 * @since 2.8.0
 */
function wp_print_footer_scripts()
{
    /**
     * Fires when footer scripts are printed.
     *
     * @since 2.8.0
     */
    do_action('wp_print_footer_scripts');
}

WordPress Version: 3.7

/**
 * Hooks to print the scripts and styles in the footer.
 *
 * @since 2.8
 */
function wp_print_footer_scripts()
{
    do_action('wp_print_footer_scripts');
}