将jQuery插件安装到wordpress中

时间:2013-05-16 12:54:38

标签: jquery wordpress forms validation

我有一个用户将根据健康测试结果填写的表格,即每分钟俯卧撑,每分钟仰卧起坐,2英里运行时间等。此表单提交到自定义模板页面也可正常工作。但是,我想使用this jquery插件来帮助我验证表单。

如何将这样的jQuery库添加到wordpress中,以便我可以验证我的表单

1 个答案:

答案 0 :(得分:0)

打开 functions.php 并添加以下代码:

//ad our custom Jquery
 function init_js_scripts() {
if (!is_admin()) {
    wp_register_script('jquery', ('http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'), false, '');
    wp_enqueue_script('jquery');

    // load a JS file from your  theme: js/theme.js
    //You will need to create js Folder and put your script in there...
    wp_enqueue_script('my_cool_script', get_template_directory_uri() . '/js/cool_script.js', array('jquery'), '1.0', true);
}
    }
    add_action('init', 'init_js_scripts');