Skip to content

Instantly share code, notes, and snippets.

@Rocky-Mehta88
Last active November 27, 2019 04:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rocky-Mehta88/0a9107a2684c3944ceece02d4f6928a3 to your computer and use it in GitHub Desktop.
Save Rocky-Mehta88/0a9107a2684c3944ceece02d4f6928a3 to your computer and use it in GitHub Desktop.
<?php
/**
* Author: Rocky Mehta
* Link: https://rocky-mehta.com/
* Email: rocky.mehta88@gmail.com
*/
/* Enable html Span tag support in WordPress widget title*/
add_filter( 'widget_title', 'html_tag_support_widget_title_function' );
function html_tag_support_widget_title_function( $title ) {
$title = str_replace( '[span]', '<span>', $title );
$title = str_replace( '[/span]', '</span>', $title );
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment