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

omar youssef
PLUS
omar youssef
Courses Plus Student 8,827 Points

error in using wp_head();

when calling wp_head() function my page turn blank , thought it was working and show up the content before calling the wp_head()

Code: <!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title><?php wp_title(); ?></title>

<?php wp_head(); ?>

</head>

1 Answer

Bob McCarty
PLUS
Bob McCarty
Courses Plus Student 16,618 Points

Omar,

wp_head() causes WordPress to load the styles, scripts and meta tags as defined in functions.php. Check the functions.php file. Check to make sure you have the appropriate script and style load functions. Check the browser's development tools console for 'file not found' or other errors.

Bob

omar youssef
omar youssef
Courses Plus Student 8,827 Points

thanks U Bob u r right i found an error in functions.php file