Skip to content

Instantly share code, notes, and snippets.

@dlh01
Last active May 8, 2017 21:45
Show Gist options
  • Save dlh01/c7c900d302589a13cfd2a9beb29ba4fd to your computer and use it in GitHub Desktop.
Save dlh01/c7c900d302589a13cfd2a9beb29ba4fd to your computer and use it in GitHub Desktop.
Try to stop Chrome from caching WordPress feeds during development
<?php
add_action( 'send_headers', function ( $wp ) {
if ( ! empty( $wp->query_vars['feed'] ) ) {
header( 'Cache-Control: no-cache, no-store, must-revalidate' );
}
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment