wordpress add_action echo on edit page code example
Example: wordpress add_action echo on edit page
add_action("edit_form_advanced", "your_function");
/*
Tip: when you have question like this, best thing to do is look at
source code.
The file responsible to output post edit page in admin is:
/wp-admin/edit-form-advanced.php
*/