Jetpack::concat_remove_style_loader_tag PHP Method

concat_remove_style_loader_tag() public method

public concat_remove_style_loader_tag ( $tag, $handle )
    function concat_remove_style_loader_tag($tag, $handle)
    {
        if (in_array($handle, $this->concatenated_style_handles)) {
            $tag = '';
            if (defined('WP_DEBUG') && WP_DEBUG) {
                $tag = "<!-- `" . esc_html($handle) . "` is included in the concatenated jetpack.css -->\r\n";
            }
        }
        return $tag;
    }
Jetpack