So what I have in my sidebar right now is
<div class="track-side"><h3 id="pings">Trackbacks</h3>
<ul>
<?php wp_list_comments('type=pings&callback=mytheme_ping'); ?>
</ul>
</div>
But I'd like it to not show up if there are no trackbacks or pings to display. I tried to use an if statement, but I don't think I targeted the right function as it doesn't display anything.
Any help?