[Plugin: Insert or Embed Articulate Content into WordPress] Embedded script tag
-
Please, please, don’t use embedded script tags!
Adding a
<script>tag as plain string to the header or footer makes it hard to disable it if it makes issues with a installation.Instead use
wp_enqueue_script(orwp_register_script first) outlined at Codex.In my case, I’ve got jQuery already loaded, and your plugin is loading it a second time.
wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/XXXXXXXXX/jquery.min.js'); wp_enqueue_script( 'jquery' );If you would like to do a version prior deregistering and registering the script, check check out another post of mine.
http://ww.wp.xz.cn/extend/plugins/insert-or-embed-articulate-content-into-wordpress/
The topic ‘[Plugin: Insert or Embed Articulate Content into WordPress] Embedded script tag’ is closed to new replies.