'
' . '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; ?>Your comment is awaiting moderation.