Pods Alternative Cache

Pods Alternative Cache is a file-based or database-based caching solution for hosts that have limitations on object caching.

fetch()

Fetch an item from a Pod.

field()

Return the value for a field.

pods()

Set up the Pods class object for a specific pod.

Pods-UI Customizations including re-ordering of Fields

From Andy Fuchs/Tiptronic /* Customize a pod including re-ordering */ $object = pods('test'); $fields = array(); /* collect all fields of the pod into an array */ foreach($object->fields as $field => $data) { $fields[$field] = array('label' => $data['label']); } /* add a WP default field */ $fields['content'] = array('label' => __('content')); /* if you want …

Read more