Ciao a tutti,
vorrei modificare il file home.php affinché mostri nella front page gli ultimi 6 post. Ho provato dal pannello di amministrazione ma non funziona. Quindi suppongo di dover mettere mano al codice php.

Qualcuno sa dirmi quali file devo modificare e qual è il giusto codice?

Io ho modificato, senza risultati, il file home.php in questo modo:
Codice PHP:
<?php get_header(); ?>
            <?php get_sidebar('top'); ?>
            <?php
            
if (have_posts()) {
                
/* Display navigation to next/previous pages when applicable */
                
if (theme_get_option('theme_' . (theme_is_home() ? 'home_' '') . 'top_posts_navigation')) {
                    
theme_page_navigation();
                }
                
?>
<div class="content-layout">
    <div class="content-layout-row">
    <div class="layout-cell" style="width: 50%" >
        <?php theme_get_next_post(); ?>
    </div><div class="layout-cell" style="width: 50%" >
        <?php theme_get_next_post(); ?>
    </div>
    </div>
</div>
<div class="content-layout">
    <div class="content-layout-row">
    <div class="layout-cell" style="width: 50%" >
        <?php theme_get_next_post(); ?>
    </div><div class="layout-cell" style="width: 50%" >
        <?php theme_get_next_post(); ?>
    </div>
    </div>
</div>
<div class="content-layout">
    <div class="content-layout-row">
    <div class="layout-cell" style="width: 50%" >
        <?php theme_get_next_post(); ?>
    </div><div class="layout-cell" style="width: 50%" >
        <?php theme_get_next_post(); ?>
    </div>
    </div>
</div>

                <?php
                
/* Display navigation to next/previous pages when applicable */
                
if (theme_get_option('theme_bottom_posts_navigation')) {
                    
theme_page_navigation();
                }
            } else {
                
theme_404_content();
            }
            
?>
            <?php get_sidebar('bottom'); ?>
<?php get_footer
(); ?>
Il template è stato creato con Artisteer 4.

Grazie a chiunque sia in grado di aiutarmi!!!