You are on page 1of 2

<?

php
/**
* The Sidebar containing the main widget areas.
*/
?>
<div id="sidebar-home" class="widget-area" role="complementary">
<?php if ( ! dynamic_sidebar( 'sidebar-home' ) ) : ?>
<aside id="categories" class="widget">
<div class="widget-title"><?php _e( 'Cat
egories', 'surfarama' ); ?></div>
<ul>
<?php wp_list_categories( array(
'title_li' => '',
'hierarchical' => 0
) ); ?>
</ul>
</aside>
<aside id="recent-posts" class="widget">
<div class="widget-title"><?php _e( 'Lat
est Posts', 'surfarama' ); ?></div>
<ul>
<?php
$args = array( 'numberpo
sts' => '10' );
$recent_posts = wp_get_r
ecent_posts( $args );
foreach( $recent_posts a
s $recent ){
if ($recent["pos
t_title"] == '') {
$recent
["post_title"] = __('View Post', 'surfarama');
}
echo '<li><a hre
f="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_ti
tle"]).'" >' . $recent["post_title"] .'</a> </li> ';
}
?>
</ul>
</aside>
<aside id="recent-comments" class="widget">
<div class="widget-title"><?php _e( 'Recent Comments', '
surfarama' ); ?></div>
<ul>
<?php surfarama_recent_comments(); ?>
</ul>
</aside>
<aside id="archives" class="widget">
<div class="widget-title"><?php _e( 'Arc
hives', 'surfarama' ); ?></div>
<ul>
<?php wp_get_archives( array( 't
ype' => 'monthly' ) ); ?>

</ul>
</aside>
<?php endif; // end sidebar widget area ?>
</div><!-- #sidebar .widget-area -->

You might also like