dbx_post_sidebar
Fires after all meta box sections have been output, before the closing #post-body div.
Usage
add_action( 'dbx_post_sidebar', 'wp_kama_dbx_post_sidebar_action' );
/**
* Function for `dbx_post_sidebar` action-hook.
*
* @param WP_Post $post Post object.
*
* @return void
*/
function wp_kama_dbx_post_sidebar_action( $post ){
// action...
}
- $post(WP_Post)
- Post object.
Changelog
| Since 2.1.0 | Introduced. |
Where the hook is called
In file: /wp-admin/edit-form-advanced.php
dbx_post_sidebar
wp-admin/edit-form-advanced.php 756
do_action( 'dbx_post_sidebar', $post );