Disable all other page except index,register,login till user login
Functional code written using PHP 5.3+ Closures. Read the comments throughout to understand concept and flow. // Hook right before Themes kick in add_action(‘wp’, function(){ // Allow viewing of home/front_page if(is_home() or is_front_page()) return; // Maybe allow access to archives (non singulars) to? // (when you hide important content after <!–more–>) // if(is_archive()) return; // … Read more