Changeset 5700 for trunk/wp-includes/bookmark-template.php
- Timestamp:
- 06/14/2007 02:25:30 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/bookmark-template.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark-template.php
r5560 r5700 10 10 function wp_get_links($args = '') { 11 11 global $wpdb; 12 12 13 13 if ( strpos( $args, '=' ) === false ) { 14 14 $cat_id = $args; 15 15 $args = add_query_arg( 'category', $cat_id, $args ); 16 16 } 17 17 18 18 $defaults = array( 19 19 'category' => -1, 'before' => '', … … 24 24 'echo' => true 25 25 ); 26 26 27 27 $r = wp_parse_args( $args, $defaults ); 28 28 extract( $r ); … … 132 132 if ( $show_description && '' != $desc ) 133 133 $output .= $between . $desc; 134 134 135 135 if ($show_rating) { 136 136 $output .= $between . get_linkrating($row); … … 246 246 'after' => '</li>', 'between' => "\n" 247 247 ); 248 248 249 249 $r = wp_parse_args( $args, $defaults ); 250 250 extract( $r ); … … 303 303 if ( $show_description && '' != $desc ) 304 304 $output .= $between . $desc; 305 305 306 306 if ($show_rating) { 307 307 $output .= $between . get_linkrating($bookmark); 308 308 } 309 309 310 310 $output .= "$after\n"; 311 311 } // end while … … 326 326 'category_after' => '</li>' 327 327 ); 328 328 329 329 $r = wp_parse_args( $args, $defaults ); 330 330 extract( $r );
Note: See TracChangeset
for help on using the changeset viewer.