i have done dynamic entry in expression Engine.now i have problem with this because i want to show first four entry on first page and other entries on another page so how can i do this?
0
votes
2 Answers
1
votes
If it's not pagination you're after, and you specifically want to have one page with 4, and the rest on another page, on the first page.
{exp:channel:entries channel="news" limit="4"}
<h2>{title}</h2>
{body}
{/exp:channel:entries}
And then on the second page you use the offset property to show the rest of the entries
{exp:channel:entries channel="news" offset="4"}
<h2>{title}</h2>
{body}
{/exp:channel:entries}