' . __( 'Continue reading ', 'biroe' ) . ''; } function biroe_auto_excerpt_more( $more ) { return ' …' . biroe_continue_reading_link(); } add_filter( 'excerpt_more', 'biroe_auto_excerpt_more' ); function biroe_custom_excerpt_more( $output ) { if ( has_excerpt() && ! is_attachment() ) { $output .= biroe_continue_reading_link(); } return $output; } add_filter( 'get_the_excerpt', 'biroe_custom_excerpt_more' ); add_filter( 'use_default_gallery_style', '__return_false' ); function biroe_remove_gallery_css( $css ) { return preg_replace( "##s", '', $css ); } // Backwards compatibility with WordPress 3.0. if ( version_compare( $GLOBALS['wp_version'], '3.1', '<' ) ) add_filter( 'gallery_style', 'biroe_remove_gallery_css' ); if ( ! isset( $content_width ) ) $content_width = 900; if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); } if ( ! function_exists( 'biroe_comment' ) ) : function biroe_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case '' : ?>
  • id="li-comment-">
    says:', 'biroe' ), sprintf( '%s', get_comment_author_link() ) ); ?>
    comment_approved == '0' ) : ?>
    $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
  • __( 'Sidebar Left', 'biroe' ), 'id' => 'sidebar-left', 'description' => __( 'Left Sidebar', 'biroe' ), 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); register_sidebar( array( 'name' => __( 'Footer Left', 'biroe' ), 'id' => 'footer-left', 'description' => __( 'Footer Left', 'biroe' ), 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); register_sidebar( array( 'name' => __( 'Footer Middle', 'biroe' ), 'id' => 'footer-middle', 'description' => __( 'Footer Middle', 'biroe' ), 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); register_sidebar( array( 'name' => __( 'Footer Right', 'biroe' ), 'id' => 'footer-right', 'description' => __( 'Footer Right', 'biroe' ), 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); } add_action( 'widgets_init', 'biroe_widgets_init' ); function biroe_remove_recent_comments_style() { add_filter( 'show_recent_comments_widget_style', '__return_false' ); } add_action( 'widgets_init', 'biroe_remove_recent_comments_style' ); add_theme_support('automatic-feed-links'); add_editor_style('custom-editor-style.css');