Guest User

Untitled

a guest
Nov 5th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. //$attachment_alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true );
  2.  
  3. $args = array( 'post_type' => 'attachment', 'orderby' => 'menu_order', 'order' => 'ASC', 'post_mime_type' => 'image' ,'post_status' => null, 'numberposts' => null );
  4.  
  5. $attachments = get_posts($args);
  6. if ($attachments) {
  7. foreach ( $attachments as $attachment ) {
  8. $attachment_alt = 'alt="' . $attachment->post_title . '"';
  9. } }
Advertisement
Add Comment
Please, Sign In to add comment