Using register_activation_hook in classes
Having reread your question, I think I see the issue, and it stems from a misunderstanding of how register_activation_hook works, combined with some confusion over how you’re bootstrapping your code and what it means to bootstrap Part 1: register_activation_hook This function takes 2 parameters: register_activation_hook( string $file, callable $function ) The first parameter, $file is … Read more