shkola/wp-content/themes/dekart/template-parts/hero-metric.php
2026-05-09 13:34:44 +03:00

12 lines
370 B
PHP

<?php
$metric = get_query_var( 'hero_metric' );
$icon_url = $metric['img']
? wp_get_attachment_url( $metric['img'] )
: $metric['default_icon'];
?>
<div class="wrapper__propositions">
<img src="<?php echo esc_url( $icon_url ); ?>" alt="">
<h3><?php echo esc_html( $metric['number'] ); ?></h3>
<p><?php echo esc_html( $metric['label'] ); ?></p>
</div>