<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
is not working anymore. I don't know when this started, but it does not display anything. If I change it to catergorize=1, it works, but shows the bookmark title which I don't want to see. Anyone else experiencing this?
Works okay for me.
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
I get a list of bookmarks with no title.
hiddenyogin
Member
Posted 1 year ago #
i have had EXACTLY the same behavior on 4 wordpress installs [wp 3.01]....the usage documented in the codex <?php wp_list_bookmarks('title_li=&categorize=0'); ?> now displays nothing. when the argument for 'categorize' is set to 1, the links return, but with the unwanted header. has a solution been found?
hiddenyogin
Member
Posted 1 year ago #
with testing it is obviously &categorize=0 which is creating the issue...this is new w/ 3.0/3.01 as the code has been functional until the upgrade.
<?php wp_list_bookmarks('title_li=&categorize=0&echo=1'); ?> try this once.
hiddenyogin
Member
Posted 1 year ago #
no success w/ <?php wp_list_bookmarks('title_li=&categorize=0&echo=1'); ?>....i just used css to remove the header, ugly but effective i guess....the codex should be updated if the original code will no longer work.
Michael said it works for him, and i can confirm it also works for me to.
wp_list_bookmarks('title_li=&categorize=0');
I get a list of bookmarks without a heading.