I am looking for a very first WP Action hook, I am actually looking for a hook that’s called even before connecting/calling the Database.
is there any?
I have tried use 'wp'
hook with lowest priority but it still connects to DB.
I have also tried looking at the core WP files, but doesn’t seem to find one.
muplugins_loaded
is the earliest hook.The next best hook to trigger is
plugins_loaded
.Also check this for more information
WordPress Codex – Action Reference List
How to get WordPress’ hook run sequence?