Вы все еще не объясняете, что вы хотите сделать с этим метабоксом на страницах администрирования заказа.
Следующий код, основанный на вашем коде, покажет вам путь (с реальным функционалом$order
):
// Add a new custom meta box to Admin single order pages
add_action('add_meta_boxes', 'new_meta_box');
function new_meta_box(){
add_meta_box( 'new_meta_box',
__('New Meta Box', 'woocommerce'),
'new_meta_box_content',
'shop_order', 'side', 'high'
);
}
// The content of this new metabox
function new_meta_box_content(){
global $post; // <=== Alway at the beginning
// Get an instance of the WC_Order Object
$order = wc_get_order( $post->ID );
// TESTING an external custom function (with the WC_Order object as argument)
echo get_formatted_order_key( $order );
// Example (testing): Displaying a text field
woocommerce_wp_text_input( array(
'id' => '_my_text_field1',
'type' => 'text',
'label' => __( 'My field 1', 'woocommerce' ),
'placeholder' => __( 'My placeholder text 1', 'woocommerce' ),
'description' => __( 'My Custom description 1: your explanations.', 'woocommerce' ),
'desc_tip' => true,
) );
// The nonce field (security): Always when you submit data from custom form fields
echo '<input type="hidden" name="my_fields_nonce" value="' . wp_create_nonce() . '">';
// Not really needed as the default "Update" button does the same.
submit_button(__('Submit'), 'primary', 'new_meta_box_button' ); // <=== To be removed
}
// Saving the text field value only from shop orders post type admin pages
add_action('save_post_shop_order','save_new_meta_box_content');
function save_new_meta_box_content( $post_id ){
if ( ! isset( $_POST[ 'my_fields_nonce' ] ) ) {
return $post_id;
}
if ( ! wp_verify_nonce( $_REQUEST[ 'my_fields_nonce' ] ) ) {
return $post_id;
}
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return $post_id;
}
if ( ! current_user_can( 'edit_shop_order', $post_id ) ) {
return $post_id;
}
// Everything is secured, we can save the value
if ( isset( $_POST[ '_my_text_field1' ] ) ) {
update_post_meta( $post_id, '_my_text_field1', sanitize_text_field( $_POST[ '_my_text_field1' ] ) );
}
}
// Custom external function with the WC_Order object as argument
function get_formatted_order_key( $order ){
if( is_a($order, 'WC_Order') && $order_key = $order->get_order_key() ){
$output = '<p><strong>Order key: </strong>'.$order_key.'</p>';
} else {
$output = '<p style="font-weight:bold; color:red;">Something is wrong!</p>';
}
return $output;
}
Код помещается в файл function.php вашей активной дочерней темы (активной темы).Проверено и работает.