admin管理员组文章数量:1417442
I'm using wordpress, and contact form 7 plugin. What's i'm trying to acplish is that some of the drop down menus are populated with custom javascript, I know that you can include it with another plugin "Scripts and Stuff" for example. but I wanted to put it in a seperate file and include the file in the body tags of the contact form with script src=".js" (actual form created with the plugin)
EDIT: i donot want to add it to a footer.php of the theme, I want the script src to be on a Single page only. not the entire theme
I'm using wordpress, and contact form 7 plugin. What's i'm trying to acplish is that some of the drop down menus are populated with custom javascript, I know that you can include it with another plugin "Scripts and Stuff" for example. but I wanted to put it in a seperate file and include the file in the body tags of the contact form with script src="http://example/myscript.js" (actual form created with the plugin)
EDIT: i donot want to add it to a footer.php of the theme, I want the script src to be on a Single page only. not the entire theme
Share Improve this question edited Feb 6, 2017 at 23:53 sim555 asked Feb 6, 2017 at 23:37 sim555sim555 131 silver badge6 bronze badges1 Answer
Reset to default 4sure, that's quite straight forward. There are 2 ways to achieve this,
- you can either insert a
<script>with your js code</script>
at the bottom of your form inside the cf7 form editor, this way the script loads only when the form is printed on the page. However, make sure you don't add any new lines spaces in your js code else cf7 plugin will insert empty<p></p>
elements and this will break your code at execution. Alternatively, if you are running WP4.7 you can now use the
do_shortcode_tag
which has been introduced with this release to actually enqueue your script on the same page as which the form is being printed, but remember to register that script earlier on first,add_filter('wp_enqueue_scripts', 'register_my_script'); function register_my_script(){ wp_register_script( 'my-script', get_stylesheet_directory_uri() . 'js/my-script.js', array( 'jquery' ), "1.0" , false ); } add_filter('do_shortcode_tag', 'enqueue_my_script',10,3); function enqueue_my_script($output, $tag, $attr){ if('contact-form-7' != $tag){ return $output; //make sure we filter cf7 shortcodes } if(isset($attr['id']) && '4' == $attr['id']){ wp_enqueue_script('my-script'); //enqueue if it is form id=4 } return $output; }
本文标签: contact form 7 in wordpress how to include javascript src in bodyStack Overflow
版权声明:本文标题:contact form 7 in wordpress how to include javascript src in body - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745261258a2650366.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论