Skip to content

Instantly share code, notes, and snippets.

@danfisher85
Created April 29, 2015 12:07
Show Gist options
  • Save danfisher85/fd4d2ebcc0eafd90aac3 to your computer and use it in GitHub Desktop.
Save danfisher85/fd4d2ebcc0eafd90aac3 to your computer and use it in GitHub Desktop.
WP Login Redirects for Comments Section (PetSitter)
/** For Comments (Blog & Resumes) **/
add_filter('login_url','petsitter__custom_login_url');
if(!function_exists('petsitter__custom_login_url')) {
function petsitter__custom_login_url($login_url) {
global $petsitter_data;
if(isset($petsitter_data['petsitter__job-manager-login-page'])) {
return get_permalink($petsitter_data['petsitter__job-manager-login-page']);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment