12 lines
370 B
PHP
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>
|