load_helper
(Since 1.7.9) -- load a pod helper
function load_helper($params)
Parameters
$params is an ASSOCIATIVE ARRAY that supports the following attributes:| Parameter | Type | Details |
|---|---|---|
| id | INT | the helper ID |
| name | STRING | the helper name |
Returns
An associative array of all columns in the "wp_pod_helpers" table, or a string beginning with "Error".Examples
$api = new PodAPI();
$params = array('id' => 54);
$api->load_helper($params);
