Additional information
Tire Brand | Grenlander |
---|---|
Season | |
Tire Size | |
Size-W | |
Profile | |
Diameter |
// ~~~~~~~~~~~~~ ADMIN PRODUCT NOTES METABOX ~~~~~~~~~~~~~ add_action('add_meta_boxes', function () { add_meta_box( 'product_notes_box', 'Internal Product Notes', function ($post) { $notes = get_post_meta($post->ID, '_product_notes', true); echo ''; }, 'product', 'side', 'default' ); }); add_action('save_post_product', function ($post_id) { if (isset($_POST['product_notes_field'])) { update_post_meta($post_id, '_product_notes', sanitize_text_field($_POST['product_notes_field'])); } });