$f ) {
$media = '';
$f = wp_parse_args( $f, array(
'icon_type' => 'icon',
'icon' => 'gg',
'image' => '',
'link' => '',
'title' => '',
'desc' => '',
) );
if ( $f['icon_type'] == 'image' && $f['image'] ){
$url = onepress_get_media_url( $f['image'] );
$image_alt = get_post_meta( $f['image']['id'], '_wp_attachment_image_alt', true);
if ( $url ) {
$media = '
';
}
} else if ( $f['icon'] ) {
$f['icon'] = trim( $f['icon'] );
$media = ' ';
}
?>