Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

Nav not working, no console errors, help!

I have changes foundation.js to foundation-min.js, but the nav i still not working. I have checked all other spellings and I can't figure out the problem!

Here is my code:

<?php

function km_theme_styles() {

    wp_enqueue_style( 'foundation_css', get_template_directory_uri() . '/css/foundation.css');
    wp_enqueue_style( 'normalize_css', get_template_directory_uri() . '/css/normalize.css');
    wp_enqueue_style( 'googlefont_css', '@import url(http://fonts.googleapis.com/css?family=Asap:400,700,400italic,700italic');
    wp_enqueue_style( 'main_css', get_template_directory_uri() . '/style.css');
}
add_action ('wp_enqueue_scripts', 'km_theme_styles' );

function km_theme_js() {
    wp_enqueue_script( 'modernizr_js', get_template_directory_uri() . 'js/modernizr.js', '', '', false );
    wp_enqueue_script( 'foundation_js', get_template_directory_uri() . 'js/foundation-min.js', array('jquery'), '', true );
    wp_enqueue_script( 'main_js', get_template_directory_uri() . 'js/app.js',  array('jquery' , 'foundation_js'), '', true );

add_action ('wp_enqueue_scripts', 'km_theme_js' );
}

?>

1 Answer

Erik McClintock
Erik McClintock
45,783 Points

Kelly,

Off the bat, there are two things you can try here:

1) Generally, minified files are named with .min, not -min. Obviously, without looking at your files, I couldn't say if that is the case here, as things could've been renamed, but I would try foundation.min.js over what you currently have, which is foundation-min.js.

2) You need to take your add_action( 'wp_enqueue_scripts', 'km_theme_js' ); call out of your function. You currently have it INSIDE your km_theme_js function, but you need to put it OUTSIDE of it, just after your function's closing curly brace.

Try these two changes and see if things improve!

Erik