I want to display this 2 navigation one to the right and one to the left.
Previous, the left. Next, the right.
<div class="navigation">
<?php $mam_global_stay_in_cat = ($_GET['stayincat']) ? $_GET['stayincat'] : true;
if ( $mam_global_stay_in_cat ) { ?>
<div><?php previous_post_link('« %link','%title',true) ?></div>
<div><?php next_post_link('%link »','%title',true) ?></div>
<?php } else { ?>
<div><?php previous_post_link('« %link') ?></div>
<div><?php next_post_link('%link »') ?></div>
<?php } ?>
</div>
Right now what this code does is lay the 2 links (Next/Previous) on top of each other so I want to display it in a good way where Previous will go to the left and Next to the right. Can anyone help? Appreciated!