php - How to use post title as featured image's alt text in Wordpress? -
how can use post title alt text of posts featured image in wordpress?
please show me how/where can tweak wordpress core files achieve that, since seems theme i'm using doesn't react in way plugins re-write alt tags of images...
thank you!
no need change wordpress core files:)
just locate in theme the_post_thumbnail()
function used , change to:
$title=get_the_title(); the_post_thumbnail( array(150, 150),array( 'alt' =>$title) );
Comments
Post a Comment