Skip to content

Instantly share code, notes, and snippets.

@bhwebworks
Created May 17, 2013 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhwebworks/5600052 to your computer and use it in GitHub Desktop.
Save bhwebworks/5600052 to your computer and use it in GitHub Desktop.
Add span class to widget headlines
// Add span class to widget headlines
add_filter( 'widget_title', 'metro_widget_title' );
function metro_widget_title( $title ){
if( $title )
return sprintf('<span class="widget-headline">%s</span>', $title );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment