Featured image - change alt

PHOTO EMBED

Mon Aug 07 2023 20:50:24 GMT+0000 (Coordinated Universal Time)

Saved by @mastaklance

/**
 * Change featured image Alt text
 */
add_filter( 'wp_get_attachment_image_attributes', 'tl_add_img_title', 10, 2 );
// Add title attribute to featured image
function tl_add_img_title( $attr, $attachment = null){
	$attr['title'] = get_post( $attachment->ID )->post_title;
	return $attr;
}
content_copyCOPY