Created
October 21, 2013 03:49
-
-
Save jamiemitchell/7078406 to your computer and use it in GitHub Desktop.
Add span class to widget headline in Genesis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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