wordpress add action echo on edit page

Solutions on MaxInterview for wordpress add action echo on edit page by the best coders in the world

showing results for - "wordpress add action echo on edit page"
Mika
31 Feb 2016
1add_action("edit_form_advanced", "your_function");
2/*
3Tip: when you have question like this, best thing to do is look at 
4source code.
5
6The file responsible to output post edit page in admin is:
7/wp-admin/edit-form-advanced.php
8*/