My blog is Table for Five. To save space in the sidebar, I would like to move my blogroll to the Link Love page. I looked at wp_get_bookmarks, but I don't see how to add that code to a page.
Besides manually typing them all in, is there a way to ask WordPress to grab that link list and display it on the Link Love page? Thanks!
Elizabeth
Try this when you're on the page and in HTML view:
<?php wp_list_bookmarks( $args ); ?>
If this doesn't work, then you may need to install Exec-PHP plugin to enable the execution of PHP in your page.
Hope this helps.
Phil
Or create a custom page template and add the code the the new template file.
PSM - I followed your tip, posted the code in the HTML of the page. I have the Exec-PHP Plugin already. I updated the page and now where I put that code I just see the code again.
http://table4five.net/link-love/ (code went at the end)
Esmi - I'll try your suggestion, thanks.