Skip to content

Instantly share code, notes, and snippets.

@cfaria
Created June 3, 2019 18:11
Show Gist options
  • Save cfaria/fa3dde19a90a706f06ed587b32fe8366 to your computer and use it in GitHub Desktop.
Save cfaria/fa3dde19a90a706f06ed587b32fe8366 to your computer and use it in GitHub Desktop.
Kinsta cache issue
if(!is_admin()) add_action('template_redirect', 'supermundano_template_redirects');
function supermundano_template_redirects(){
if( is_page( 'documents' ))
{
if(!is_user_logged_in()){
wp_redirect( wp_login_url( get_permalink() ), 301);
die();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment