File: /var/www/test/wp-content/themes/graceful-minimal/template-parts/sections/featured-boxes.php
<?php
/**
* Template part for Featured Boxes below Header
*
* @package Graceful Minimal
*/
// Open the links in New Tab
$graceful_links_window = ( graceful_minimal_options( 'featured_boxes_window' ) )?'_blank':'_self';
?>
<div id="featured-boxes" class="<?php echo esc_attr( graceful_minimal_options( 'featured_boxes_width' ) ) === 'wrapped' ? ' wrapped-content': ''; ?> clear-fix">
<!-- Link No 1 -->
<?php if ( graceful_minimal_options( 'featured_boxes_image_1' ) !== '' ): ?>
<div class="featured-box">
<img src="<?php echo esc_url( wp_get_attachment_url( graceful_minimal_options( 'featured_boxes_image_1' ) ) ); ?>" alt="<?php echo esc_html( graceful_minimal_options( 'featured_boxes_title_1' ) ); ?>">
<a href="<?php echo esc_url( graceful_minimal_options( 'featured_boxes_url_1' ) ); ?>" target="<?php echo esc_attr($graceful_links_window); ?>">
<div class="graceful-wrap-outer">
<div class="graceful-wrap-inner">
<h4><?php echo esc_html( graceful_minimal_options( 'featured_boxes_title_1' ) ); ?></h4>
</div>
</div>
</a>
</div>
<?php endif; ?>
<!-- Link No 2 -->
<?php if ( graceful_minimal_options( 'featured_boxes_image_2' ) !== '' ): ?>
<div class="featured-box">
<img src="<?php echo esc_url( wp_get_attachment_url( graceful_minimal_options( 'featured_boxes_image_2' ) ) ); ?>" alt="<?php echo esc_html( graceful_minimal_options( 'featured_boxes_title_2' ) ); ?>">
<a href="<?php echo esc_url( graceful_minimal_options( 'featured_boxes_url_2' ) ); ?>" target="<?php echo esc_attr($graceful_links_window); ?>">
<div class="graceful-wrap-outer">
<div class="graceful-wrap-inner">
<h4><?php echo esc_html( graceful_minimal_options( 'featured_boxes_title_2' ) ); ?></h4>
</div>
</div>
</a>
</div>
<?php endif; ?>
<!-- Link No 3 -->
<?php if ( graceful_minimal_options( 'featured_boxes_image_3' ) !== '' ): ?>
<div class="featured-box">
<img src="<?php echo esc_url( wp_get_attachment_url( graceful_minimal_options( 'featured_boxes_image_3' ) ) ); ?>" alt="<?php echo esc_html( graceful_minimal_options( 'featured_boxes_title_3' ) ); ?>">
<a href="<?php echo esc_url( graceful_minimal_options( 'featured_boxes_url_3' ) ); ?>" target="<?php echo esc_attr($graceful_links_window); ?>">
<div class="graceful-wrap-outer">
<div class="graceful-wrap-inner">
<h4><?php echo esc_html( graceful_minimal_options( 'featured_boxes_title_3' ) ); ?></h4>
</div>
</div>
</a>
</div>
<?php endif; ?>
</div><!-- #featured-boxes end -->