I've search all over the place for this.
I'm using get_links to return a category.
Here's my code.
<h2>Our friends'</h2>
< ul >
<?php get_links(1,'< li >','< /li >'); ?>
< /ul >
Since this is a blog I've just installed, that category 1 is returning the 'Blogroll' that comes with WordPress.
From what I can understand by reading the documentation on get_links, it looks like each link should be returned like
< li >< a href="#" > link < /a >< /li >
yet they're getting returned like this:
< li >< em >< a href="#" > link < /a >< /em >< /li >
I can't figure out for the life of me where this tag is coming from.
Anybody have a clue?
As a workaround, I use CSS to set the to font-style: normal.
It works, but doesn't seem ideal to me.