[Resolved] Remove title attribute from logo

Home Forums Support [Resolved] Remove title attribute from logo

Home Forums Support Remove title attribute from logo

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #816067
    Adieverson

    How do I remove the Title from Logo attribute?

    #816077
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try this function:

    add_filter( 'generate_logo_attributes', function( $atts ) {
        unset( $atts['title'] );
    
        return $atts;
    } );

    Let me know 🙂

    #816082
    Adieverson

    Where do I put this code?

    #816088
    David
    Staff
    Customer Support

    Hi there,

    Its PHP – this article provides a couple of options:

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

    #819155
    Adieverson

    Solved, thank you!

    #819190
    David
    Staff
    Customer Support

    Glad we could be of help

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.