Snippets

Visser Labs Adding static Order Item fields to the Orders export type

You are viewing an old version of this snippet. View the current version.
Revised by Michael Visser 54a70bf
<?php
function custom_woo_ce_order_fields( $fields ) {

	$fields[] = array(
		'name' => 'order_items_static',
		'label' => __( 'Order Items: Static Field', 'woo_ce' ),
		'hover' => __( 'Custom Field within functions.php', 'woo_ce' )
	);
	return $fields;

}
add_filter( 'woo_ce_order_fields', 'custom_woo_ce_order_fields' );
?>
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.