No sabia que eran esos nombre estoy curioseando en codepen, no se como funciona.
Haber si esto sirve:
Código PHP:
<?php get_header(); ?>
<?php if (get_option('Sidebar') == 3){
get_sidebar('');
} elseif (get_option('Sidebar') == 4){
get_sidebar('dos');
} elseif (get_option('Sidebar') == 6){
get_sidebar('dos');
get_sidebar();
}
?>
<div id="posts">
<?php if (get_option('Breadcrumb')) {?>
<div class="breadcrumbHome"><?php the_breadcrumb(); ?></div>
<?php } ?>
<div id="modulos">
<?php $sticky = get_option('sticky_posts'); ?>
<?php //Definir los parámetros de la consulta a la base de datos
$args = array(
'post__in' => $sticky,
'caller_get_posts' => 1
) ;
$loop_alternativo = new WP_Query($args);
if( $loop_alternativo->have_posts() ):
while( $loop_alternativo->have_posts() ): $loop_alternativo->the_post(); ?>
<div <?php post_class(); ?>>
<div class="Sticky">
<div class="Sticky-thumbnail"><?php if ( has_post_thumbnail() ) { the_post_thumbnail('home1'); } ?></div>
<div class="Sticky-excerpt">
<h1><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?></div>
</div><!-- end -->
</div>
<?php endwhile; endif;?>
<?php wp_reset_postdata(); ?>
<?php //Definir los parámetros de la consulta a la base de datos
$args = array(
'post__not_in' => $sticky,
'posts_per_page' => 4
) ;
$loop_alternativo = new WP_Query($args);
if( $loop_alternativo->have_posts() ):
while( $loop_alternativo->have_posts() ): $loop_alternativo->the_post();
?>
<div class="excerptCont">
<div class="thumbnail"><?php if ( has_post_thumbnail() ) { the_post_thumbnail('home'); } ?></div>
<div class="excerpt">
<h1><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<?php the_excerpt(); ?></div>
</div>
<?php
endwhile;
endif;
wp_reset_postdata(); ?>
<?php //Definir los parámetros de la consulta a la base de datos
$args = array(
'post__not_in' => $sticky,
'posts_per_page' => 6,
'cat' => 7
);
$loop_alternativo = new WP_Query($args);
if( $loop_alternativo->have_posts() ):
while( $loop_alternativo->have_posts() ): $loop_alternativo->the_post();
//Ya estamos en el bucle alternativo
?>
<div class="excerptContList">
<div class="thumbnailList"><?php if ( has_post_thumbnail() ) { the_post_thumbnail('home3'); } ?></div>
<div class="excerptList">
<span class="WidgetCategory"><?php the_category(' ') ?></span><span class="ListTitulo"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></span>
<span class="date"><?php echo get_the_date(); ?> | <?php the_author(); ?></span>
</div>
</div><!-- end -->
<?php endwhile;
endif;
wp_reset_postdata(); ?>
</div><!--- end modulos -->
</div><!-- end posts -->
<?php if (get_option('Sidebar') == 2){
get_sidebar();
}elseif (get_option('Sidebar') == 4){
get_sidebar();
} elseif (get_option('Sidebar') == 5){
get_sidebar('dos');
get_sidebar();
}
?>
</div>
<?php get_footer();?>