http://codex.wordpress.org/Class_Reference/WP_Query
İşine yarayacak kısım bu sayfada.


// The Query
$args = array("posts_per_page"=>5);
$the_query = new WP_Query( $args );

// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '
  • ' . get_the_title() . '
  • ';
    }
    } else {
    // no posts found
    }
    /* Restore original Post Data */
    wp_reset_postdata();

    Son 5 yazıyı listeler bu kod. Bunu WP Codex, HTML ve CSS kodlarıyla birleştirip istediğin şekli almasını sağlamalısın. İstediğin şekil nasıl? Görebilir miyim tasarımı?