Make WordPress Core

Changeset 2009 for trunk/index.php


Ignore:
Timestamp:
12/30/2004 10:58:06 AM (21 years ago)
Author:
saxmatt
Message:

Moving default template stuff into wp-includes, uncluttering root

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r1668 r2009  
    22/* Don't remove this line. */
    33require('./wp-blog-header.php');
    4 include(ABSPATH . '/wp-header.php');
     4get_header();
    55?>
    66
     
    2828</div>
    2929
    30 <?php comments_template(); // Get wp-comments.php template ?>
     30<?php comments_template( is_single() ); // Get wp-comments.php template ?>
    3131
    3232<?php endwhile; else: ?>
     
    3636<?php posts_nav_link(' &#8212; ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>
    3737
    38 <?php include(ABSPATH . '/wp-footer.php'); ?>
     38<?php get_footer(); ?>
Note: See TracChangeset for help on using the changeset viewer.