Home/Hooks/add_meta_boxes
ACTION

add_meta_boxes

Fires after all built-in meta boxes have been added.

wp-admin/includes/meta-boxes.php
Line 1716
2 Parameters
View Source

Usage

add_action( 'add_meta_boxes', 'your_callback_function', 10, 2 );

Action Callback:

function your_callback_function( $post_type, $post ) {
    // Your code here
    
}

Parameters

$post_type

Parameter 1

$post

Parameter 2

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.