Advertisement
arie_cristianD

change alt attritube on JNews featured gallery

Jan 30th, 2025 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_filter( 'wp_get_attachment_image_attributes', 'change_alt_attribute', 99, 3 );
  2.  
  3. function change_alt_attribute( $attr, $attachment, $size ) {
  4.     if ( 'jnews-750x536' === $size ) {
  5.         $attr['alt'] = $attachment->post_excerpt;
  6.     }
  7.     return $attr;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement