Hello, I have a question. How can I change thumbnail title and alt in my theme?
Now I have in index.php
<?php the_post_thumbnail(array(150,150)); ?>
and in functions.php
add_theme_support('post-thumbnails');
add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );
function my_post_image_html( $html, $post_id, $post_image_id ) {
$html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>';
return $html;
}
Thanks for reply :)