How to Display Link Description with Blogroll in WordPress
In this article we will show you how you can display link description below your links in your template. This tutorial was requested via our twitter profile.
First locate the following code in your sidebar.php:
<?php wp_list_bookmarks(); ?>
Then replace it to the one below:
<?php wp_list_bookmarks('show_description=1&between=<br />'); ?>
This will allow you to display link description below each blogroll link. Now this can also be done through your Widgets in the wp-admin panel if your theme is widget enabled.

As you can see in the image there is an option for link description. Just check it, and it will be displayed.
Comments
One Response to “How to Display Link Description with Blogroll in WordPress”Share Your Opinions
Tell us what you're thinking...
and if you want a pic to show with your comment, then get gravatar!
Please make sure that you have read our Comment Policy.










PERFECT! Just what I was looking for. Thanks for the resource.