5
Come posso mostrare immagini allegate dei miei post su Wordpress?Mostra l'immagine allegata al post su Wordpress
Come posso mostrare immagini allegate dei miei post su Wordpress?Mostra l'immagine allegata al post su Wordpress
Prova questo nel modello single.php:
$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'post_parent' => $post->ID
);
$images = get_posts($args);
foreach($images as $image):
echo wp_get_attachment_image($image->ID, 'medium');
endforeach;
Grazie mille per il vostro sostegno. – fatihturan
Sto iniziando a rendermi conto che non esiste una soluzione bellissima per questo. – ViniciusPires