I’m working with custom theme.
How can i implement this code into my design.
My code looks like this:
<div class="header">
<?php the_post_thumbnail(); ?>
<h2><?php the_title(); ?></h2>
<p><?php the_excerpt(); ?></p>
</div>
<div class="main">
<?php the_post_thumbnail(); ?>
<h2><?php the_title(); ?></h2>
</div>
<div class="footer">
<h2><?php the_title(); ?></h2>
</div>
<div class="nav">
<?php previous_posts_link('Previous') ?><?php next_posts_link('Next') ?><a href="<?php echo home_url(); ?>" class="selected">Home</a></div>
and it need to be limit number of every item.
header (1 post)
main (next 4 posts)
footer (next 10 posts) -> those are moving with navigation
I did search for something like this for few times and i couldn’t find anything workable.