Incorporating the new is_paged()
-
I am trying to wrap my head around the new is_paged() and need a little help. I had this:
<?php if (is_archive()) : // Only show excerpts on archive pages
the_excerpt();
else :
the_content(‘Continue reading “‘ . get_the_title() . ‘”…’);
endif; ?>
But now scrolling through the “next page” links just shows the excerpts. If I add !is_paged() that works here, but messes up the next page in the archives. What to do, what to do? ??
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Incorporating the new is_paged()’ is closed to new replies.