Why does add_action() not run when placed in register_activation_hook()?
why does add_action need to go into main plugin file to be activated instead of using the register_hook_activation()? You’ve misunderstood how WordPress and PHP work. Any code that does not write to the database or a file is not persistent, and add_action() does not do either. Any time a WordPress page is requested by the … Read more