Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jamie Grantham-Burton
2,731 PointsI'm having issue with this after 4 minutes of video, nothing is rendering since updating the header and footer.
Can anyone advise if there are any errors in the video as I've followed step by step?
<b>Fatal error</b>: Uncaught Error: Call to undefined function blog_info() in /Users/jamiegrantham-burton/Desktop/wordpress/wp-content/themes/treehouse-portfolio/header.php:12
index.php
<?php get_header(); ?>
<h1>Index file</h1>
<?php get_footer(); ?>
header.php
<!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>
<body>
<header class="row no-max pad main">
<!-- <h1><a class='current' href="<?php blog_info('url'); ?>"><?php blog_info('name'); ?></a></h1> -->
<h1><a class='current' href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
<a href="" class="nav-toggle"><span></span>Menu</a>
<nav>
<!-- <h1 class="open"><a class='current' href="<?php blog_info('url'); ?>"><?php blog_info('name'); ?></a></h1> -->
<h1 class="open"><a class='current' href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
<ul class="no-bullet">
<li class="current parent"><a class='current' href="index.html">Portfolio</a>
<ul class="sub-menu">
<li><a href="item.html">Portfolio Item</a></li>
<li><a href="item.html">Portfolio Item</a></li>
<li><a href="item.html">Portfolio Item</a></li>
<li><a href="item.html">Portfolio Item</a></li>
</ul>
</li>
<li class="parent"><a href="blog.html">Blog</a>
<ul class="sub-menu">
<li><a href="single-post.html">Single Post</a></li>
<li><a href="author.html">Author Page</a></li>
</ul>
</li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
functions.php
<?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() . '/style.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_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', 'wpt_theme_js');
?>
footer.php
<div class="footer-clear"></div>
<footer class="row no-max pad">
<ul class="social-links no-bullet">
<li><a href="" class="icon icon-twitter"></a></li>
<li><a href="" class="icon icon-facebook"></a></li>
<li><a href="" class="icon icon-vimeo"></a></li>
<li><a href="" class="icon icon-youtube"></a></li>
<li><a href="" class="icon icon-linkedin"></a></li>
<li><a href="" class="icon icon-github"></a></li>
<li><a href="" class="icon icon-flickr"></a></li>
<li><a href="" class="icon icon-google"></a></li>
<li><a href="" class="icon icon-email"></a></li>
</ul>
<p>Copyright 2014</p>
</footer>
<!-- <script src="assets/js/vendor/jquery.js"></script>
<script src="assets/js/foundation.min.js"></script>
<script src="assets/js/app.js"></script>
<script>
$(document).foundation();
</script> -->
</body>
</html>
3 Answers

Martin Jones
Front End Web Development Techdegree Graduate 43,232 PointsIt appears the function does not exist for "blog_info".
Looking at the WordPress Documentation, I would change this to "bloginfo()"
https://developer.wordpress.org/reference/functions/bloginfo/

Jamie Grantham-Burton
2,731 PointsThank you Martin, I'd just noticed this myself!

234jsdf24
Courses Plus Student 618 PointsThank you! That answer saved me :)