WordPress
16
Вклад в тег
if ( get_post_meta( get_the_ID(), 'images', false ) ){ //images название вашего произвольного поля
$image_array = get_post_meta( get_the_ID(), 'images', false ); //images название вашего произвольного поля
}
if ( $image_array ) {
foreach ( $image_array as $image ) {
$thumbimg = wp_get_attachment_image( $image['ID'], 'thumbnail');
$fullimg = pods_image_url( $image['ID'], 'large');
echo '<a href="'. $fullimg . '">' . $thumbimg . '</a>';
}
}
bcdedit /set hypervisorlaunchtype off
<?php echo get_post_meta( $post->ID, 'name-field', true );