I have a custom post type called "Static Content."
I would like to list those posts in the following secondary sidebar:
sidebar-secondary:
<div class="block-3 border-top">
<?php
// A second sidebar for widgets, just because.
if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?>
<ul id="secondary-widget" class="xoxo">
<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
</ul>
<?php endif; ?>
</div><!-- #sidebar -->
Any suggestions?