edit_page_form action-hook . WP 1.5.0
Fires after 'normal' context meta boxes have been output for the 'page' post type.
Usage
add_action( 'edit_page_form', 'action_function_name_6612' ); function action_function_name_6612( $post ){ // action... }
- $post(WP_Post)
- Post object.
Changelog
Since 1.5.0 | Introduced. |
Where the hook is called
In file: /wp-admin/edit-form-advanced.php
edit_page_form
wp-admin/edit-form-advanced.php 698
do_action( 'edit_page_form', $post );
Where in WP core the hook is used WordPress
wp-admin/edit-form-advanced.php 44
add_action( 'edit_page_form', array( $this, 'maybe_run_ajax_cache' ) );