Changeset 6026 for trunk/wp-includes/widgets.php
- Timestamp:
- 09/03/2007 11:32:58 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/widgets.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/widgets.php
r6025 r6026 376 376 ?> 377 377 <p><label for="pages-title"><?php _e('Title:'); ?> <input style="width: 250px;" id="pages-title" name="pages-title" type="text" value="<?php echo $title; ?>" /></label></p> 378 <p><label for="pages-sortby"><?php _e( 'Sort by:' ); ?> 378 <p><label for="pages-sortby"><?php _e( 'Sort by:' ); ?> 379 379 <select name="pages-sortby" id="pages-sortby"> 380 380 <option value="post_title"<?php selected( $options['sortby'], 'post_title' ); ?>><?php _e('Page title'); ?></option> … … 391 391 extract($args, EXTR_SKIP); 392 392 wp_list_bookmarks(array( 393 'title_before' => $before_title, 'title_after' => $after_title, 394 'category_before' => $before_widget, 'category_after' => $after_widget, 393 'title_before' => $before_title, 'title_after' => $after_title, 394 'category_before' => $before_widget, 'category_after' => $after_widget, 395 395 'show_images' => true, 'class' => 'linkcat widget' 396 396 )); … … 418 418 $title = empty($options['title']) ? __('Archives') : $options['title']; 419 419 420 echo $before_widget; 420 echo $before_widget; 421 421 echo $before_title . $title . $after_title; 422 422 423 if($d) { 423 if($d) { 424 424 ?> 425 425 <select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'> <option value=""><?php echo attribute_escape(__('Select Month')); ?></option> <?php wp_get_archives("type=monthly&format=option&show_post_count=$c"); ?> </select> 426 <?php 427 } else { 426 <?php 427 } else { 428 428 ?> 429 429 <ul> … … 433 433 } 434 434 435 echo $after_widget; 435 echo $after_widget; 436 436 } 437 437 … … 615 615 616 616 echo $before_widget; 617 echo $before_title . $title . $after_title; 617 echo $before_title . $title . $after_title; 618 618 619 619 $cat_args = "orderby=name&show_count={$c}&hierarchical={$h}";
Note: See TracChangeset
for help on using the changeset viewer.