edit_form_advanced WordPress Action Hook
The edit_form_advanced hook is used to add extra fields to the post editor screen. This hook is typically used to add custom fields to a post, but can also be used to add other fields or modify the default fields.
do_action( 'edit_form_advanced', WP_Post $post ) #
Fires after ‘normal’ context meta boxes have been output for all post types other than ‘page’.
Parameters
- $post
(WP_Post)Post object.
Source
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |