EM
Size: a a a
EM
ВБ
EM
UC
ВБ
ВБ
AR
ВБ
ВБ
ВБ
ВБ
ВБ
if ( !function_exists ( 'custom_theme_svg_sprite_icon' ) ) {
function custom_theme_svg_sprite_icon ( $icon_class = null, $icon_id = null ) {
$icon_class = is_null( $icon_class ) ? : ' ' . $icon_class;
$icon_id = is_null( $icon_id ) ? : $icon_id;
return '
<svg class="icon' . $icon_class . '">
<use xlink:href="' . esc_url( THEME_SVG_SPRITE_URL . '#' . $icon_id ) . '"></use>
</svg>
';
}
add_action( 'after_setup_theme', 'custom_theme_svg_sprite_icon' );
}
UC
ВБ
if ( !function_exists ( 'custom_theme_svg_sprite_icon' ) ) {
function custom_theme_svg_sprite_icon ( $icon_class = null, $icon_id = null ) {
$icon_class = is_null( $icon_class ) ? : ' ' . $icon_class;
$icon_id = is_null( $icon_id ) ? : $icon_id;
return '
<svg class="icon' . $icon_class . '">
<use xlink:href="' . esc_url( THEME_SVG_SPRITE_URL . '#' . $icon_id ) . '"></use>
</svg>
';
}
add_action( 'after_setup_theme', 'custom_theme_svg_sprite_icon' );
}
<?php if ( function_exists( 'svg_sprite_icon' ) ) echo svg_sprite_icon( 'top-header__search-icon', 'fa-solid_search' ); ?>
ВБ
ВБ
UC
ВБ