Type of widgets and shortcodes.
Parameters
- type – type of widgets and shortcodes.
Usage
<?php
function change_cart_suggestion_widget_type ( $type ) {
//your code here
return $type;
}
add_filter( 'cart_suggestion_widget_type', 'change_cart_suggestion_widget_type' );
?>