Make WordPress Core


Ignore:
Timestamp:
06/10/2005 11:15:13 PM (19 years ago)
Author:
ryan
Message:

Break blog header up into functional chunks. Stick it all in a WP class for now. Make wp() the front door. Move template/theme loader code into template-loader.php. Clean up feed file loadup. Modularize.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-trackback.php

    r2563 r2627  
    11<?php
    2 require_once( dirname(__FILE__) . '/wp-config.php' );
    32
    4 if ( empty($doing_trackback) ) {
    5     $doing_trackback = true;
    6     $tb = true;
    7     require_once('wp-blog-header.php');
     3if (empty($wp)) {
     4    require_once('wp-config.php');
     5    wp('tb=1');
    86}
    97
Note: See TracChangeset for help on using the changeset viewer.