How to get advance custom post type data
get image field $image = get_field('upload_banner_image'); if( !empty( $image ) ): ?> <img class="product-main-image" src="<?php echo esc_url($image['url']); ?>" class="product-main-image" alt="<?php echo esc_attr($image['alt']); ?>" /> <?php endif; ?> get other…