Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Created October 21, 2013 03:49
Show Gist options
  • Save jamiemitchell/7078406 to your computer and use it in GitHub Desktop.
Save jamiemitchell/7078406 to your computer and use it in GitHub Desktop.
Add span class to widget headline in Genesis
<?php
/* Add span class to widget headline
------------------------------------------------------------ */
add_filter( 'widget_title', 'child_widget_title' );
function child_widget_title( $title ){
if( $title )
return sprintf('<span>%s</span>', $title );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment