';
$item_icon_pack = get_post_meta(get_the_ID(), "qode_masonry_gallery_item_with_icon_icon_pack", true) != '' ? get_post_meta(get_the_ID(), "qode_masonry_gallery_item_with_icon_icon_pack", true) : 'font_awesome';
//Get icon pack
if ($item_icon_pack != ''){
$icon_collection_obj = $qodeIconCollections->getIconCollection($item_icon_pack);
//Get icon pack param
$item_icon_param = $icon_collection_obj->param;
//Get icon
if (get_post_meta(get_the_ID(), "qode_masonry_gallery_item_with_icon_".$item_icon_param, true) !== '') {
$item_icon = get_post_meta(get_the_ID(), "qode_masonry_gallery_item_with_icon_".$item_icon_param, true);
}
//Render icon
if (method_exists($icon_collection_obj, 'render') && $item_icon !== '') {
$html .= '
'.$icon_collection_obj->render($item_icon).'
';
}
}
$html .= '
' . get_the_title() . '
';
$html .= '
' . esc_html($item_text) . '
';
$html .= '