Ok, so I got the whole deal working! However, the drop-down menu stays, well, dropped-down while navigating my blog as well. Here is the kicker though: it only stays dropped for the first page of the blog. When I navigate to page 2, page 3, and so on, it disappears (as it should). Any ideas?!
<?php wp_list_categories('include=11&title_li='); ?>
<?php
if ( in_category( 'collaborations' ) || is_single('collaborations')) { ?>
<ul class="child">
<?php previous_post_link_plus( array('link' => 'Previous', 'format' => '%link', 'loop' => true, 'in_same_cat' => true) ); ?> ||
<?php next_post_link_plus( array('link' => 'Next', 'format' => '%link', 'loop' => true, 'in_same_cat' => true) ); ?>
</ul>
<?php } ?>
PS…I am using the link plus plugin, thus the code “post_link_plus”
Thanks in advance!