• finanzbeben

    (@finanzbeben)


    Dear all, Due to the updated widget for most viewed post, I now have a SEO structure problem because of the widget title. Is there a possibility to delete the h5 or at least change it somehow? Many thanks

Viewing 1 replies (of 1 total)
  • Thread Starter finanzbeben

    (@finanzbeben)

    Hi there

    Doesn’t anybody have an idea how to delete the title in the sidebar or set it to <p></p> via PHP code snippet?

    I already used this to get rid of html headings for footer widgets in the generatepress theme.

    add_filter( 'generate_start_widget_title', 'db_start_widget_title' );
    function db_start_widget_title()
    { 
        return '<p class="widget-title">';
    }
    
    add_filter( 'generate_end_widget_title', 'db_end_widget_title' );
    function db_end_widget_title()
    { 
        return '</p>';
    }

    Kind regards

Viewing 1 replies (of 1 total)
  • The topic ‘h5 SEO structure issue Most viewed posts widget’ is closed to new replies.