Ho dovuto cambiare il template per farlo mobile-friendly.
Il file mainIndex.php dice:

codice:
get_header();

    get_template_part( 'loop', 'index' );

get_footer();
Il file loop.php dice invece:

codice:
if ( have_posts() ) {

    wmhook_postslist_before();

    echo '<div id="posts" class="posts posts-list clearfix"' . wm_schema_org( 'ItemList' ) . '>';

        wmhook_postslist_top();

        while ( have_posts() ) :

            the_post();

            get_template_part( 'content', get_post_format() );

        endwhile;

        wmhook_postslist_bottom();

    echo '</div>';

    wmhook_postslist_after();

} else {

    get_template_part( 'content', 'none' );

}

wp_reset_query();
Ma io vorrei arrivare al codice dove posso modificare il numero di post che compaiono nell'home page, o la forma dei riquadri.
Dove sta il file che devo modificare che non lo trovo?