Site logo

Archived topic

widget title + span

1 reply · Started by Capital Link on August 6, 2019

Viewing posts 1–2 of 2

I would like to add <span> after the <h2 class="widget-title">

How can I do this?

I use child theme.

Hi there,

you can try adding this PHP snippet:

add_filter( 'generate_start_widget_title', function() {
    return '<h2 class="widget-title"><span>';
});

add_filter( 'generate_end_widget_title', function() {
    return '</span></h2>';
});

https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.