Thumbnail title and alt?
-
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.phpadd_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 ??
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Thumbnail title and alt?’ is closed to new replies.