function wpcf7_do_enqueue_scripts()
{
    if (wpcf7_load_js()) {
        wpcf7_enqueue_scripts();
    }
    if (wpcf7_load_css()) {
        wpcf7_enqueue_styles();
    }
}
Exemple #2
0
function wpcf7_html5_fallback()
{
    if (!wpcf7_support_html5_fallback()) {
        return;
    }
    if (wpcf7_load_js()) {
        wp_enqueue_script('jquery-ui-datepicker');
        wp_enqueue_script('jquery-ui-spinner');
    }
    if (wpcf7_load_css()) {
        wp_enqueue_style('jquery-ui-smoothness', wpcf7_plugin_url('includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css'), array(), '1.10.3', 'screen');
    }
}