my problem is that I can navigate between Blog pages and posts but I cant navigate between the category pages.
My code looks like that:
<div class="previous-page">
<?php
if(is_single()){
previous_post_link( '%link', __( '<div title="%title">‹</div>') );
} else {
previous_posts_link( __('‹') );
}
?>
</div>
and I have the same code for the next_post/next_posts. I thougt that the previous code also covers the category. So what I am missing?
Greetings and Thanks Chris