Home > Software engineering >  Wordpress hook before the edit post form is loaded
Wordpress hook before the edit post form is loaded

Time:11-19

i'm looking, without exit, for a wordpress hook which is fired before the edit post page is loaded to prepopulate a field with values that i will get from the URL. Any clue about if this hook exists? thanks

CodePudding user response:

I think the best hook for this would be admin_init.

In addition, it looks like there is a more detailed answer for this question here.

  • Related