PluginProbe
Qi Blocks / 1.1
Qi Blocks v1.1
1.5.3 1.5.2 1.5.1 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 All 45 releases
qi-blocks / inc / blocks / button / templates / parts / icon.php

icon.php in Qi Blocks 1.1, at inc/blocks/button/templates/parts/icon.php

11 lines 502 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! empty( $buttonIcon ) && isset( $buttonIcon['html'] ) && ! empty( $buttonIcon['html'] ) ) { ?>
2 <span <?php qi_blocks_class_attribute( $icon_classes ); ?>>
3 <span class="qodef-m-icon-inner">
4 <?php echo qi_blocks_get_svg_icon_content( $buttonIcon['html'] ); ?>
5 <?php if ( ! empty( $buttonIconHoverMove ) && ( $buttonIconHoverMove !== 'move-horizontal-short' ) ) { ?>
6 <?php echo qi_blocks_get_svg_icon_content( $buttonIcon['html'] ); ?>
7 <?php } ?>
8 </span>
9 </span>
10 <?php } ?>
11