In my Wordpress plugin I try to include two scripts in the page footer, like so:
function my_interface_enqueues() {
wp_enqueue_script( 'require-js', plugin_dir_url( __FILE__ ) . 'js/libs/requirejs/require.js', array(), false, true );
wp_enqueue_script( 'main-js', plugin_dir_url( __FILE__ ) . 'js/main.js', array(), false, true );
}
Yet when I check the rendered page, the scripts are inside the <head>
, despite the 5th parameter being set true
. What could cause this?
Wordpress version is 4.7.3