golden hour
/home/godaofbq/dev.hyperredbed.com/wp-content/plugins/blocks-for-shopengine/blocks/avatar
⬆️ Go Up
Upload
File/Folder
Size
Actions
controls.json
15.46 KB
Del
OK
helper.php
457 B
Del
OK
index.js
193 B
Del
OK
screen.php
2.67 KB
Del
OK
style.js
10.02 KB
Del
OK
Edit: helper.php
<?php use ShopEngine\Utils\Helper; defined('ABSPATH') || exit; if(!function_exists('render_icon')){ function render_icon($icon , $attr = []){ $return_value = ''; foreach($attr as $key => $value){ if(is_array($value) || is_object($value)){ $value = wp_json_encode($value); } $return_value .= $key . '="' . $value . '" '; } $html = "<i class='".$icon."' " .$return_value."></i>"; echo wp_kses($html, Helper::get_kses_array()); } }
Save