How to change post thumbnail title and alt attributes to post title?

Can we change the title and alt attributes of the_post_thumbnails and set them to post title instead ? like creating a function for it and adding a filter ? I tried searching but I can’t seem to find what I want.

and thanks in advance.

Related posts

Leave a Reply

2 comments

  1. try this

    $title_attribute = the_title_attribute( array( 'echo' => FALSE ) );
    the_post_thumbnail(
        'full', 
        array(
            'alt'   => $title_attribute, 
            'title' => $title_attribute 
        )
    );