Changeset 8600 for trunk/wp-includes/widgets.php
- Timestamp:
- 08/09/2008 05:36:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/widgets.php
r8572 r8600 167 167 function wp_register_widget_control($id, $name, $control_callback, $options = array()) { 168 168 global $wp_registered_widget_controls; 169 169 170 170 $id = strtolower($id); 171 171 … … 463 463 extract($args); 464 464 $searchform_template = get_template_directory() . '/searchform.php'; 465 465 466 466 echo $before_widget; 467 467 468 468 // Use current theme search form if it exists 469 469 if ( file_exists($searchform_template) ) { … … 476 476 </div></form> 477 477 <?php } 478 478 479 479 echo $after_widget; 480 480 } … … 744 744 ?> 745 745 <ul> 746 <?php 746 <?php 747 747 $cat_args['title_li'] = ''; 748 wp_list_categories($cat_args); 748 wp_list_categories($cat_args); 749 749 ?> 750 750 </ul>
Note: See TracChangeset
for help on using the changeset viewer.