emilyoly 1 Denunciar post Postado Junho 10, 2015 Boa tarde, gostaria de saber se existe uma forma de pegar as ultimas imagens adicionas em uma galeria (a galeria nativa do wordpress). para exibi-las em um slideshow. Compartilhar este post Link para o post Compartilhar em outros sites
Ted k' 126 Denunciar post Postado Junho 10, 2015 Veja se ajuda: <?php $args_imagens = array( 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => -1, 'orderby' => 'menu_order', 'order' => 'ASC' ); $attachments_imagens = get_posts($args_imagens); if ($attachments_imagens){ foreach ($attachments_imagens as $image){ $imagem_full = wp_get_attachment_image_src($image->ID, 'full'); ?> <img src="<?php echo $imagem_full[0]; ?>"><br> <?php } } ?> Compartilhar este post Link para o post Compartilhar em outros sites