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 trialEvan MacAlpine
7,173 PointsParse error: syntax error (php related)
There appears to be some sort of syntax error in code which is preventing my local site from loading. I've looked over it for a while now and can't seem to figure it out. Here is my code and the error message. Any help would be great.
Ashenafi Ashebo
15,021 PointsBecause you made simple errors like semicolons, and single quotes. Remove your functions.php files and replace with this one.
<?php
function wpt_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('normalize_css', 'http://fonts.googleapis.com/css?family=Asap:400,700,400italic,700italic');
wp_enqueue_style('main_css', get_template_directory_uri() . '/syle.css');
}
add_action('wp_enqueue_scripts','wpt_theme_styles');
function wpt_theme_js() {
wp_enqueue_script( 'modernizr_js', get_template_directory_uri() . '/js/modernizr.js', '', '', 'false' );
wp_enqueue_script( 'foundation.min_js', get_template_directory_uri() . '/js/foundation.min.js', array('jquery'), '', 'true');
wp_enqueue_script( 'main_js', get_template_directory_uri() . '/js/foundation.min.js', array('jquery'), 'foundation_js', 'true');
}
add_action('wp_enqueue_script', 'wpt_theme_js');
?>
2 Answers
Nicolas Blanco Mattos
Courses Plus Student 2,545 PointsJust remove quotes around array(jquery). You have it this 'array('jquery')' needs quotes only around the jquery word like this array('jquery')
<?php
wp_enqueue_script('main_js', get_template_directory_uri() . '/js/foundation.min.js', array('jquery'), 'foundation_js', 'true');
?>
Wilton cruz-ramirez
10,159 Pointsand you need to add foundation.min.js (.min.js)
Joe Klovance
3,275 PointsJoe Klovance
3,275 PointsThat's an easy one. You have extra quotes around the array definition for the third parameter.