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 trialKelvin Loney
4,280 PointsMy index.php doesn't display at all
HERE IS MY CODE
INDEX.PHP
<?php get_header(); ?>
<h1>Index file</h1>
<?php get_footer(); ?>
HEADER.PHP
<p>Header</p>
FOOTER.PHP
<p>Footer</p>
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');
?>
2 Answers
John Lack-Wilson
8,181 PointsHard to tell why this might be without looking at your folder structure, is the index.php file in the correct location?
Kelvin Loney
4,280 PointsThat's fine. Thanks anyway John!
Kelvin Loney
4,280 PointsKelvin Loney
4,280 PointsHi John. I believe it is. The index.php file is located in the first tier of my folder. So to give you some context, in the first tier I have index.php, footer.php, header.php, functions.php, style.css, css folder, and js folder. If you need further information please let me know.
John Lack-Wilson
8,181 PointsJohn Lack-Wilson
8,181 PointsSounds correct to me. The other thing I can think of is that do you have your server (MAMP or such) started and running? And also configured to work with the WordPress install?
Kelvin Loney
4,280 PointsKelvin Loney
4,280 PointsI do have my MAMP running. I also believe it is configured to the WordPress install. I never had an issue with the method that I used to install.
John Lack-Wilson
8,181 PointsJohn Lack-Wilson
8,181 PointsHmmm, very odd. Hopefully someone will be able to solve it for you. Sorry I couldn't be more helpful!