Sidebar links for different pages

Register a new sidebar by pasting this into your theme’s functions.php file:

register_sidebars( 'id' => 'patientedu' );

Create a file called sidebar-patientedu.php and paste the following into it:

<?php if (is_active_sidebar('patientedu')) : ?>
<div id="sidebar">
    <h2>PatientEdu Sidebar</h2>
    <?php dynamic_sidebar('patientedu'); ?>    
</div>
<?php endif; ?>

Then paste this whereever you want your sidebar to show up:

<?php get_sidebar('patientedu'); ?>