WordPress Bookmarks list with description

I saw this piece of code in a file from a theme and I wanted to share it with you. It’s a very nice piece of code that shows all the links per category, with description. So good, you don’t even have to change it any more.

Here’s the code:

<?php $args = array(
'title_li' => false,
'title_before' => '<h2>',
'title_after' => '</h2>',
'category_before' => false,
'category_after' => false,
'categorize' => true,
'show_description' => true,
'between' => '<br />',
'show_images' => false,
'show_rating' => false,
);
wp_list_bookmarks( $args ); ?>

You can find a working example here.