--- bookmark-template.php	2008-12-26 03:05:33.230236000 -0800
+++ 8733	2008-12-27 08:27:10.893878000 -0800
@@ -28,6 +28,8 @@
  *		available.
  * 'show_name' - Default is 1 (integer). Whether to show link name if
  *		available.
+ * 'show_feed' - Default is 0 (integer). Whether to show feed link if
+ *		available.
  * 'before' - Default is '<li>' (string). The html or text to prepend to each
  *		bookmarks.
  * 'after' - Default is '</li>' (string). The html or text to append to each
@@ -53,6 +55,7 @@ function _walk_bookmarks($bookmarks, $ar
 		'show_updated' => 0, 'show_description' => 0,
 		'show_images' => 1, 'show_name' => 0,
 		'before' => '<li>', 'after' => '</li>', 'between' => "\n",
+		'show_feed' => 0,
 		'show_rating' => 0, 'link_before' => '', 'link_after' => ''
 	);
 
@@ -121,6 +124,10 @@ function _walk_bookmarks($bookmarks, $ar
 		if ( $show_description && '' != $desc )
 			$output .= $between . $desc;
 
+		if ($show_feed) {
+			$output .= $between .  "<a class='feedlink' href='" .  sanitize_bookmark_field('link_feed', $bookmark->link_rss, $bookmark->link_id, 'display') . "'>feed</a>";
+		}
+
 		if ($show_rating) {
 			$output .= $between . sanitize_bookmark_field('link_rating', $bookmark->link_rating, $bookmark->link_id, 'display');
 		}
