Last active
December 15, 2022 07:54
-
-
Save arunbasillal/fb96cd8828a1af18b2bcdeb80459a1f7 to your computer and use it in GitHub Desktop.
Use Captions as alt text.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Use Captions as alt text. | |
* | |
* @param $attributes (array) Associative array of image attributes. | |
* @param $image_id (int) ID of the current image. | |
* @param $parent_post_id (int) ID of the post the image is inserted into. 0 for images not attached to a post. | |
* | |
* @author Arun Basil Lal | |
* @link https://imageattributespro.com/codex/iaffpro_image_attributes/ | |
*/ | |
function prefix_use_captions_as_alt_text( $attributes, $image_id, $parent_post_id ) { | |
$image = get_post( $image_id ); | |
// Image caption is saved as post_excerpt. | |
if ( ! empty( $image->post_excerpt ) ) { | |
$attributes['alt_text'] = $image->post_excerpt; | |
} | |
return $attributes; | |
} | |
add_filter( 'iaffpro_image_attributes', 'prefix_use_captions_as_alt_text', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment