I trying to adapt a static page to WordPress. In front page, after some branding i need to show latests posts in 4 different divs with a "read more" link. The static page is this: http://cmshop.site90.com/
How can i achieve this? Can you please help me. i m using a template which looks like this:
<?php /*
Template Name: No sidebar page
*/ ?>
<?php get_header(); ?>
<div id="add">
<h1>Ravinto<br>
&Terveys</h1>
<img src ="http://akselgumus.com/wordpress1/wp-content/uploads/2014/11/struc.jpg">
</div> <!-- #add -->
<div id="sum"></div>
<div id="sum"></div>
<div id="sum"></div>
<div id="sum"></div>
<?php get_footer(); ?>
Latest posts should go into
<div>elements with the same id (sum). Ids should be unique per page, so either give them different ids or else use a class instead - Dre