Read more »

','brawny' ), esc_attr( get_permalink( $post->ID ) ), esc_attr( get_the_title( $post->ID ) ) ); return $output; } function brawny_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length','brawny_excerpt_length',999 ); function brawny_content_class() { global $brawny; if( isset( $brawny['main_layout'])) { if( 'left' == $brawny['main_layout'] ) { $content_class = 'offset-by-one'; } } else { $content_class = ''; } return $content_class; } function brawny_sidebar_class() { global $brawny; if( isset( $brawny['main_layout'] ) ) { if( 'left' == $brawny['main_layout'] ) { $sidebar_class = 'offset-by-one'; } } else { $sidebar_class = ''; } return $sidebar_class; } function brawny_display_footer_credits() { $credits = ''; $credits .= '' . sprintf( __( 'Proudly powered by %s', 'brawny' ), 'WordPress' ) . ''; $credits .= ' | '; $credits .= sprintf( __( 'Theme %1$s by %2$s.', 'brawny' ), 'Brawny', 'Webulous Themes' ); echo $credits; } add_action( 'brawny_footer_credits' , 'brawny_display_footer_credits' );