'; } $media = ''; if ( !empty( $attributes['image'] ) || !empty( $attributes['video'] ) ) { $media .= '
'; if ( !empty( $attributes['image'] ) ) { $media .= '' . esc_attr( $attributes['image']['alt'] ) . ''; } if ( !empty( $attributes['video'] ) ) { $media .= ''; } $media .= '
'; } switch ( $layout ) { case 'grid': $output = '
' . $background . '
' . $content . '
' . $url . '
'; break; default: $output = '
' . $background . '
' . $content . '
' . $media . ' ' . $url . '
'; break; } return $output; }