drop_pod_item

(Since 1.7.9) -- drop a pod item
function drop_pod_item($params)

Parameters

$params is an ASSOCIATIVE ARRAY that supports the following attributes:
ParameterTypeDetails
pod_id INT the pod_id of the chosen item

Returns

Nothing, or a string beginning with "Error".

Examples

// You must find $pod_id separately!
$params = array('pod_id' => $pod_id);

$api = new PodAPI('my_pod');
$api->drop_pod_item($params);
See Also