Exemplo n.º 1
0
                    </div>
                        
                <?php 
}
?>
                
            </div>
            
			<?php 
get_template_part('pagination');
?>
            
        </div>
        
		<?php 
if (suevafree_template('span') == "span8") {
    ?>
    
                <section id="sidebar" class="span4">
                    <div class="row">
                    
					<?php 
    if (is_active_sidebar('home_sidebar_area')) {
        dynamic_sidebar('home_sidebar_area');
    } else {
        the_widget('WP_Widget_Archives', '', array('before_widget' => '<div class="pin-article span4"><div class="widget-box">', 'after_widget' => '</div></div>', 'before_title' => '<h3 class="title">', 'after_title' => '</h3>'));
        the_widget('WP_Widget_Calendar', array("title" => __('Calendar', 'wip')), array('before_widget' => '<div class="pin-article span4"><div class="widget-box">', 'after_widget' => '</div></div>', 'before_title' => '<h3 class="title">', 'after_title' => '</h3>'));
        the_widget('WP_Widget_Categories', '', array('before_widget' => '<div class="pin-article span4"><div class="widget-box">', 'after_widget' => '</div></div>', 'before_title' => '<h3 class="title">', 'after_title' => '</h3>'));
    }
    ?>
Exemplo n.º 2
0
Arquivo: main.php Projeto: aeravelo/et
function suevafree_post_class($classes)
{
    if (is_single()) {
        $classes[] = 'pin-article ' . suevafree_template('span') . ' ' . suevafree_template('sidebar');
    } else {
        $classes[] = 'pin-article ' . suevafree_template('span');
    }
    return $classes;
}