WC_AJAX::wc_ajax_headers PHP Méthode

wc_ajax_headers() private static méthode

Send headers for WC Ajax Requests.
Since: 2.5.0
private static wc_ajax_headers ( )
    private static function wc_ajax_headers()
    {
        send_origin_headers();
        @header('Content-Type: text/html; charset=' . get_option('blog_charset'));
        @header('X-Robots-Tag: noindex');
        send_nosniff_header();
        nocache_headers();
        status_header(200);
    }
WC_AJAX