Can you paste the code from your sidebar.php file at http://wordpress.pastebin.ca/ and report the link back here.
And you aren’t using widgets are you?
no i am not using widgets…
The documentation is clear:
title_li
(string) Text for the heading of the Page 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 <ul>, </ul> tags.
Source: http://codex.wordpress.org/Template_Tags/wp_list_bookmarks
I know have
- <div class=”links”></div>
<?php wp_list_bookmarks(‘title_li= ‘); ?>
and it still has the word “links” sorry if i am just not getting it…
Try adding the categorize=0 parameter to that.
Resources:
template tags
wp_list_bookmarks()
i tried both
<div class=”links”></div>
<?php wp_list_bookmarks(‘title_li= ‘, ‘categorize=0’); ?>
NO CHANGE and then
<div class=”links”></div>
<?php wp_list_bookmarks(‘categorize=0’); ?>
the word LINKS chagned to BOOKMARKS
Well, the instructions say this:
<?php wp_list_bookmarks('categorize=0&title_li=0'); ?>
Remember, it also says:
and the list will not be wrapped with <ul>, </ul> tags. – which means you will have to add it manually!
Thank YOU!! I SOOOO appreciate you help!!