edit_form_before_permalink WordPress Action Hook
The edit_form_before_permalink hook is called before the permalink field on the post editing screen is output. It can be used to add custom fields to the editing screen, or to modify the existing fields.
do_action( 'edit_form_before_permalink', WP_Post $post ) #
Fires before the permalink field in the edit form.
Contents
Parameters
- $post
(WP_Post)Post object.
Source
Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |