Snippets

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

You are viewing an old version of this snippet. View the current version.
Revised by Michael Visser 08b495e
<?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' );

function custom_woo_ce_extend_order_items_individual( $order, $order_item ) {

	$order->order_items_static = 'Static value';
	return $order;

}
add_filter( 'woo_ce_order_items_individual', 'custom_woo_ce_extend_order_items_individual', 10, 2 );
?>
HTTPS SSH

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