cache_javascript_headers() WP 1.0
Set the headers for caching for 10 days with JavaScript content type.
No Hooks.
Return
Null. Nothing.
Usage
cache_javascript_headers();
Changelog
Since 2.1.0 | Introduced. |
Code of cache_javascript_headers() cache javascript headers WP 5.6
function cache_javascript_headers() {
$expiresOffset = 10 * DAY_IN_SECONDS;
header( 'Content-Type: text/javascript; charset=' . get_bloginfo( 'charset' ) );
header( 'Vary: Accept-Encoding' ); // Handle proxies.
header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expiresOffset ) . ' GMT' );
}Related Functions
From category: Uncategorized
- do_robots()
- download_url()
- get_privacy_policy_url()
- is_blog_installed()
- is_wp_error()
- maybe_convert_table_to_utf8mb4()
- nocache_headers()
- show_admin_bar()