Ticket #20788: 20788.2.diff
File 20788.2.diff, 1.0 KB (added by , 10 years ago) |
---|
-
src/wp-includes/default-widgets.php
153 153 * 154 154 * @see wp_list_bookmarks() 155 155 * 156 * @param array $args An array of arguments to retrieve the links list. 156 * @param array $args An array of arguments to retrieve the links list. 157 * @param array $instance An array of the current instance of the widget. 157 158 */ 158 159 wp_list_bookmarks( apply_filters( 'widget_links_args', array( 159 160 'title_before' => $args['before_title'], 'title_after' => $args['after_title'], … … 161 162 'show_images' => $show_images, 'show_description' => $show_description, 162 163 'show_name' => $show_name, 'show_rating' => $show_rating, 163 164 'category' => $category, 'class' => 'linkcat widget', 164 'orderby' => $orderby, 'order' => $order, 165 'limit' => $limit, 166 ) ) ); 165 'orderby' => $orderby, 'order' => $order, 'limit' => $limit, 166 ), $instance ) ); 167 167 } 168 168 169 169 /**