Failing to load my script files in wordpress! i can’t figure out what i’m doing wrong
Probable Cause I strongly suspect that you do not call wp_head() in your header.php file, immediately before the closing HTML </head> tag: <?php wp_head(); ?> </head> You must call this template tag, in order to fire the wp_head action. The wp_head action in turn fires the wp_enqueue_scripts action. So, without having <?php wp_head(); ?> in … Read more