Hi. I am trying to remove the text "Blogroll" above the links. In sidebar the code is:
<h3>Lenker</h3>
<?php get_links_list(); ?>
When I view the source I see:
<li>
<h3>Lenker</h3>
<li id="linkcat-2" class="linkcat"><h2>Blogroll</h2>
<ul>
<li>link</li>
<li>link</li>
<li>link</li>
</ul>
</li>
So... <?php get_links_list(); ?> generates a h2. I want to hide that h2 or edit it to h3. How do I do that? I have been looking trough the WP settings, but with no luck :(