Action hook 'edit_form_after_editor'

in WP Core File wp-admin/edit-form-advanced.php at line 682

View Source

edit_form_after_editor

Action Hook
Description
Fires after the content editor.

Hook Information

File Location wp-admin/edit-form-advanced.php View on GitHub
Hook Type Action
Line Number 682

Hook Parameters

Type Name Description
WP_Post $post Post object.

Usage Examples

Basic Usage
<?php
// Hook into edit_form_after_editor
add_action('edit_form_after_editor', 'my_custom_function', 10, 1);

function my_custom_function($post) {
    // Your custom code here
}

Source Code Context

wp-admin/edit-form-advanced.php:682 - How this hook is used in WordPress core
<?php
 677   *
 678   * @since 3.5.0
 679   *
 680   * @param WP_Post $post Post object.
 681   */
 682  do_action( 'edit_form_after_editor', $post );
 683  ?>
 684  </div><!-- /post-body-content -->
 685  
 686  <div id="postbox-container-1" class="postbox-container">
 687  <?php

PHP Documentation

<?php
/**
 * Fires after the content editor.
 *
 * @since 3.5.0
 *
 * @param WP_Post $post Post object.
 */
Quick Info
  • Hook Type: Action
  • Parameters: 1
  • File: wp-admin/edit-form-advanced.php
Related Hooks

Related hooks will be displayed here in future updates.