This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function mk_custom_admin_order_data_after_order_details($order) { | |
?> | |
<div class="order_data_column"> | |
<h4><?php _e('Custom Field'); ?></h4> | |
<?php | |
echo '<p>Custom Value</p>'; | |
?> | |
</div> | |
<?php | |
} | |
add_action('woocommerce_admin_order_data_after_order_details', 'mk_custom_admin_order_data_after_order_details'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment