Hello,
i need to have next and previous pagination in portfolio section on same category
now i have next and previous on all category…
in single-portfolio.php at 235 row i have this:
<div class=”nav-previous”><?php next_post_link(__(‘<i class=”icon-angle-left”></i> <span class=”nav-text”>%link</span>’, ‘swiftframework’), ‘%title’ ); ?></div>
<div class=”nav-next”><?php previous_post_link(__(‘<span class=”nav-text”>%link</span><i class=”icon-angle-right”></i>’, ‘swiftframework’), ‘%title’ ); ?></div>
i have tried to add TRUE
<div class=”nav-previous”><?php next_post_link(__(‘<i class=”icon-angle-left”></i> <span class=”nav-text”>%link</span>’, ‘swiftframework’), ‘%title’, TRUE ); ?></div>
<div class=”nav-next”><?php previous_post_link(__(‘<span class=”nav-text”>%link</span><i class=”icon-angle-right”></i>’, ‘swiftframework’), ‘%title’, TRUE ); ?></div>
but now seem i dont have any next prev
how it is possible have this working on same category and not to all category?