Changeset 5363 for branches/2.2/wp-includes/functions.php
- Timestamp:
- 05/01/2007 01:58:18 AM (19 years ago)
- File:
-
- 1 edited
-
branches/2.2/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2/wp-includes/functions.php
r5360 r5363 1469 1469 } 1470 1470 1471 function wp_load_widgets() { 1472 require_once ABSPATH . WPINC . '/widgets.php'; 1471 function wp_maybe_load_widgets() { 1472 if ( !function_exists( 'dynamic_sidebar' ) ) { 1473 require_once ABSPATH . WPINC . '/widgets.php'; 1474 } 1473 1475 } 1474 1476
Note: See TracChangeset
for help on using the changeset viewer.