Home/Hooks/admin_xml_ns
ACTION

admin_xml_ns

Fires inside the HTML tag in the admin header.

wp-admin/includes/template.php
Line 2657
0 Parameters
View Source

Usage

add_action( 'admin_xml_ns', 'your_callback_function' );

Action Callback:

function your_callback_function(  ) {
    // Your code here
    
}

⚡ Action Hook

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