On 1/26/07, Ryan Boren <[EMAIL PROTECTED]> wrote:
On 1/26/07, Luc Saint-Elie <[EMAIL PROTECTED]> wrote: > Hello, > > 2.1 brings some new template tags among them wp_list_bookmarks() that > replaces previous tags [ see http://lorelle.wordpress.com/2007/01/26/ > wordpress-21-template-tag-and-function-changes/] > > Previousely I used <ul ><? php get_links('-1', '<li>', '</li>', ' > '); ? >< /ul> to gest only a list of links surrounded by < li > > > How to get the same result with wp_list_bookmarks(), I mean without > the category name ? > > I tried things like wp_list_bookmarks("title_li=''") without success > Blank title_li is broken in 2.1 unfortunately. It will be fixed in 2.1.1.
If I understood the question properly... I cheated and got cheesy: <?php wp_list_bookmarks( 'orderby=rand&category=20&title_before=<!--&title_after=-->'); Title_before and _after comment out the title. _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
