Hola gente, espero alguien me pueda ayudar, tengo este archivo home.php
Código PHP:
Ver original<?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();
}
?>
<?php
for ($i = 0; $i < $wp_query->post_count; $i++) {
theme_get_next_post();
}
?>
<?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(); ?>
El theme tiene una barra lateral vertical a la derecha.
Asi como esta lista los ultimos posts cargados en una lista bastante larga, lo que me pidieron es que muestre sin la barra lateral, en dos culumnas, los ultimos 2 posts de cada categoria, es decir, el nombre de una categoria + los ultimos dos posts de esa, el nombre de otra categoria + los dos ultimos posts de esa, se entiende?
¿Como puedo hacerlo?