-
-
Save freezvd/44c4aa646ef97573c7b4 to your computer and use it in GitHub Desktop.
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