Documentation - Actions / Filters - Action – Default Post Type Interface – on Order Update

Share on FacebookTweet about this on TwitterShare on Google+Share on LinkedInPrint this page

Action – Default Post Type Interface – on Order Update

Name
APTO/default-interface/order_update_complete

Type
Action

Arguments
(int) $sort_view_id

Description
This action can be used to trigger specific code on a sort update complete within Custom Post Type default interface.
The action trigger on Default Post Type Interface, for ReOrder interface order complete action, see Action – Sort Interface – on Order Update

Example

add_action('APTO/default-interface/order_update_complete', 'custom_default_interface_order_update_complete');
function custom_default_interface_order_update_complete( $sort_view_id )
	{
		//your code here  
        }