'
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); // Sets the post excerpt length to 40 characters. function blogto_excerpt_length( $length ) { return 40; } add_filter( 'excerpt_length', 'blogto_excerpt_length' ); // Prepares a 'continue reading' link for post excerpts function blogto_continue_reading_link() { return '

' . 'Read the rest of this entry »' . '

'; } // Replaces [...] for (...) in post excerpts and appends blogto_continue_reading_link() function blogto_excerpt_more($more) { return ' (…)' . blogto_continue_reading_link(); } add_filter('excerpt_more', 'blogto_excerpt_more'); // Returns TRUE if more than one page exists. Useful for not echoing .post-navigation HTML when there aren't posts to page function show_posts_nav() { global $wp_query; return ($wp_query->max_num_pages > 1); } // Removes inline CSS style for Recent Comments widget function blogto_remove_recent_comments_style() { global $wp_widget_factory; remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) ); } add_action( 'widgets_init', 'blogto_remove_recent_comments_style' ); // Custom commments HTML function blogto_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?>
id="comment-">
comment_approved == '0') : ?>

Your comment is awaiting moderation.

by on at . $depth, 'max_depth' => $args['max_depth']))) ?> #

' . $tags . '
'; return $tag_cloud; } add_action('wp_tag_cloud', 'blogto_tag_cloud');