Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'wp_get_attachment_image_attributes', 'change_alt_attribute', 99, 3 );
- function change_alt_attribute( $attr, $attachment, $size ) {
- if ( 'jnews-750x536' === $size ) {
- $attr['alt'] = $attachment->post_excerpt;
- }
- return $attr;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement