Skip to content

Instantly share code, notes, and snippets.

@deckerweb
Created January 31, 2013 10:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deckerweb/4682113 to your computer and use it in GitHub Desktop.
Save deckerweb/4682113 to your computer and use it in GitHub Desktop.
WordPress Widget Titles: Change default H4 to an H3.
<?php
add_filter( 'widget_title', 'ddw_custom_widget_title_headline' );
/**
* Widget Titles: Change default H4 to an H3.
*
* @author David Decker - DECKERWEB
* @link http://deckerweb.de/twitter
*/
function ddw_custom_widget_title_headline( $title ) {
return '<h3>' . $title . '</h3>';
}
@stasonua0
Copy link

Not exactly what you need, the old tags still remain https://prnt.sc/YH-lLBfpZMIS
https://prnt.sc/Qe3kno3PRES0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment