• Hi everyone. I’m having a problem. I’m using <?php wp_list_bookmarks(); ?> to add my list of bookmarks in to my footer, the problem is it comes with <li id=”linkcat-2″ class=”linkcat”><h2>Blogroll</h2>, I would like to take that title out. Can you point me in the right direction? Thank you

Viewing 1 replies (of 1 total)
  • From the documentation of wp_list_bookmarks

    title_li
    (string) Text for the heading of the links list. Defaults to ‘__(‘Bookmarks’)’, which displays “Bookmarks” (the __(”) is used for localization purposes). Only used with categorize set to 0 (else the category names will be used instead). If passed a null (0) value, no heading is displayed, and the list will not be wrapped with

      ,

    tags (be sure to pass the categorize option to 0 to this option takes effect).
    title_before
    (string) Text to place before each Category description if ‘categorize’ is TRUE. Defaults to ‘<h2>’.
    title_after
    (string) Text to place after each Category description if ‘categorize’ is TRUE. Defaults to ‘</h2>’.

    If you want it to say
    <h2>MyLinks</h2>
    wp_list_bookmarks('title_li=MyLinks');

    if you want no title
    wp_list_bookmarks('title_li=');

    see
    http://codex.wordpress.org/Template_Tags/wp_list_bookmarks

Viewing 1 replies (of 1 total)

The topic ‘Edit text in blog roll widget’ is closed to new replies.