I have a question about code on wordpress: I am trying to use code wp_list_bookmarks to list my featured communities that I have setup in “links categories.” I want to be able to separate each link like the following:
San Diego | La Jolla | Rancho Santa Fe | Del Mar
I am currently using: <?php wp_list_bookmarks('title_li=&category_before=&category_after=&category=21'); ?>
It does work, but displays like this:
- San Diego
- La Jolla
- Rancho Santa Fe
- Del Mar
Again, I want this:
San Diego | La Jolla | Rancho Santa Fe | Del Mar
Any code recommendations?
Not extremely elegant, but should work…
EDIT —
I added
before
andafter
to the$args
array — these are actually what_walk_bookmarks()
uses before and after each link.