Cita:
Iniciado por ArturoGallegos Buenos días!
Gracias por comentar! La verdad que funciona! Sobretodo el código este (por si alguien le sirve esto).
Código PHP:
Ver original$args = array( 'post_type' => 'attachment', 'orderby' => 'menu_order', 'order' => 'ASC', 'post_mime_type' => 'image' ,'post_status' => null, 'numberposts' => null, 'post_parent' => $post->ID ); $attachments = get_posts($args);
if ($attachments) {
foreach ( $attachments as $attachment ) {
$alt = get_post_meta($attachment->ID, '_wp_attachment_image_alt', true);
$image_title = $attachment->post_title;
$caption = $attachment->post_excerpt;
$description = $image->post_content;
}
}
Sin embargo...podrías comentarme un poco cómo funciona el código? Soy novato en wordpress y no entiendo muy bien las funciones que usa, los argumentos...