__( 'Home Sidebar', 'blogger-base' ),
'description' => __( 'Appears on Home Page', 'blogger-base' ),
'id' => 'home',
'before_widget' => '',
'before_title' => '
',
) );
}
add_action( 'widgets_init', 'blogger_base_widgets_init' );
/* Excerpt Limit Begin */
function blogger_base_string_limit_words($string, $word_limit) {
$words = explode(' ', $string, ($word_limit + 1));
if(count($words) > $word_limit)
array_pop($words);
return implode(' ', $words);
}
?>