Skip to content

Instantly share code, notes, and snippets.

@freezvd
Forked from jamiemitchell/functions.php
Last active August 29, 2015 14:06
Show Gist options
  • Save freezvd/44c4aa646ef97573c7b4 to your computer and use it in GitHub Desktop.
Save freezvd/44c4aa646ef97573c7b4 to your computer and use it in GitHub Desktop.
<?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