9 lines
236 B
PHP
9 lines
236 B
PHP
<?php
|
|
|
|
if ( ! function_exists( 'render_hero_metric' ) ) :
|
|
function render_hero_metric( array $metric ): void {
|
|
set_query_var( 'hero_metric', $metric );
|
|
get_template_part( 'template-parts/hero-metric' );
|
|
}
|
|
endif;
|