Make WordPress Core


Ignore:
Timestamp:
05/01/2007 01:58:18 AM (19 years ago)
Author:
rob1n
Message:

New way of loading widgets that works with PHP 5. Thanks to filosofo for testing. see #4169

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/wp-includes/functions.php

    r5360 r5363  
    14691469}
    14701470
    1471 function wp_load_widgets() {
    1472     require_once ABSPATH . WPINC . '/widgets.php';
     1471function wp_maybe_load_widgets() {
     1472    if ( !function_exists( 'dynamic_sidebar' ) ) {
     1473        require_once ABSPATH . WPINC . '/widgets.php';
     1474    }
    14731475}
    14741476
Note: See TracChangeset for help on using the changeset viewer.