Forums
(@ipurush)
15 years, 11 months ago
add_action ( ‘wp_head’, ‘lbIncludes’);
This does not work as the wp_head is called after the javascript is supposed to be registered.
You need to use add_action ( ‘init’, ‘lbIncludes’); instead