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-includes/functions.php

    r2623 r2627  
    18501850}
    18511851
     1852function wp($query_vars = '') {
     1853    global $wp;
     1854    $wp->main($query_vars);
     1855}
     1856
    18521857function status_header( $header ) {
    18531858    if ( 200 == $header ) {
Note: See TracChangeset for help on using the changeset viewer.