Different first and last page
-
Hi
It seems Next Page, Not Next Post is just what i need but when installed i can stop the loop (although i have tried to set it to ease or NULL) and I want that the first page doesn’t have “previous” and the last page doesn’t have “next”.
Please can somebody help me?
I use theme twenty fourteen and template “full width page”
Thanks
cuy
`<?php
$nextPage = next_page_not_post(‘Next Page’, ‘false’, ‘sort_column=sort_order=desc’);
$prevPage = previous_page_not_post(‘Previous Page’, ‘false’, ‘sort_column=sort_order=desc’);if (!empty($nextPage) || !empty($prevPage)) {
echo ‘
<ul id=”nextPrevPages”>’;if (!empty($nextPage)) echo ‘
<li class=”next”>’.$nextPage.’
‘;
if (!empty($prevPage)) echo ‘
<li class=”previous”>’.$prevPage.’
‘;echo ‘
‘;
}
?>https://www.ads-software.com/plugins/next-page-not-next-post/
- The topic ‘Different first and last page’ is closed to new replies.