mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
9 lines
212 B
Text
9 lines
212 B
Text
<?php
|
|
add_filter( 'astra_widgets_init', 'widget_title_tag', 10, 1 );
|
|
function widget_title_tag( $atts ) {
|
|
$atts['before_title'] = '<h4 class="widget-title">';
|
|
$atts['after_title'] = '</h4>';
|
|
|
|
return $atts;
|
|
}
|
|
?>
|