Ciao a tutti,

ho un problema con un tema di Wordpress.
In pratica nella home, sotto la slide, il tema richiama una serie di post mostrandole in piccole foto. Io vorrei far in modo che in quella stessa porzione di template venga richiamata una pagina di testo (chi siamo).

Come posso modificare il codice che sarebbe questo qua sotto?

Grazie.


<div id="home-wrapper">

<?php global $ids;
if (get_option('ephoto_duplicate') == 'false') {
$args=array(
'showposts'=> (int) get_option('ephoto_homepage_posts'),
'post__not_in' => $ids,
'paged'=>$paged,
'category__not_in' => (array) get_option('ephoto_exlcats_recent'),
);
} else {
$args=array(
'showposts'=> (int) get_option('ephoto_homepage_posts'),
'paged'=>$paged,
'category__not_in' => (array) get_option('ephoto_exlcats_recent'),
);
}; ?>
<?php query_posts($args);
if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part('includes/thumbnail2'); ?>
<?php endwhile; ?>

</div>