| 1 |
<?php |
| 2 |
function sc_direct_intoCart($atts) { |
| 3 |
global $usces; |
| 4 |
extract(shortcode_atts(array( |
| 5 |
'item' => '', |
| 6 |
'sku' => '', |
| 7 |
'value' => NULL, |
| 8 |
'options' => NULL, |
| 9 |
), $atts)); |
| 10 |
|
| 11 |
if( WCUtils::is_blank($item) || WCUtils::is_blank($sku) ) return ''; |
| 12 |
|
| 13 |
$post_id = $usces->get_ID_byItemName($item); |
| 14 |
|
| 15 |
return usces_direct_intoCart($post_id, $sku, true, $value, $options, 'return'); |
| 16 |
} |
| 17 |
?> |