Make WordPress Core


Ignore:
Timestamp:
03/31/2007 07:43:49 PM (19 years ago)
Author:
rob1n
Message:

Add link rating to wp_list_bookmarks(). fixes #3916

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/bookmark-template.php

    r5090 r5153  
    137137                if ( $show_description && '' != $desc )
    138138                        $output .= $between . $desc;
     139               
     140                if ($show_rating) {
     141                        $output .= $between . get_linkrating($row);
     142                }
    139143
    140144                $output .= "$after\n";
     
    305309                if ( $show_description && '' != $desc )
    306310                        $output .= $between . $desc;
     311               
     312                if ($show_rating) {
     313                        $output .= $between . get_linkrating($bookmark);
     314                }
     315               
    307316                $output .= "$after\n";
    308317        } // end while
Note: See TracChangeset for help on using the changeset viewer.