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 WordPress Theme Development WordPress Header and Footer Templates Porting existing headers and footers into WordPress

Agnes Caringal
Agnes Caringal
6,239 Points

I have error after adding wp_head(); in header

I got this error "Fatal error: Call to undefined function wp_enquque_style() in /Applications/MAMP/htdocs/iComm2/wp-content/themes/rjbdevelopers/functions.php on line 7"

<?php

function wpt_theme_styles(){ /* wpt is for namespacing */

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_enquque_style( 'googlefont_css', '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', 'wpt_theme_styles' );

function wpt_theme_js(){

wp_enqueue_scripts( 'modernizr_js', get_template_directory_uri() . '/js/modernizr.js', '', '', false );
wp_enqueue_scripts( 'foundation_js', get_template_directory_uri() . '/js/foundation.min.js', array('jquery'), '', true);
wp_enqueue_scripts( 'main_js', get_template_directory_uri() . '/js/app.js', array('jquery', 'foundation_js'), '',  true);

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

?>

Thanks for your help :)

Agnes Caringal
Agnes Caringal
6,239 Points

Silly me! I got the line 7 problem: --> it is the "enquque" instead of "enqueue".

2 Answers

Andres Altuve
Andres Altuve
16,274 Points

Hi agnes,

Check the line that loads google fonts.

wp_enquque_style( 'googlefont_css', 'http://fonts.googleapis.com/css?family=Asap:400,700,400italic,700italic' );

Change it to:

wp_enqueue_style( 'googlefont_css', 'http://fonts.googleapis.com/css?family=Asap:400,700,400italic,700italic' );
Agnes Caringal
Agnes Caringal
6,239 Points

Thanks a lot Andres I really appreciate it!