Content
Get entities
amelia_get_entities_filter
Users can use this filter to change the entities retrieved. This call is used on the frontend forms and backend pages
Type: filter
Example:
function example($entities) { return $entities; } add_filter('amelia_get_entities_filter', 'example', 10, 1);
amelia_get_entities
Users can do an action before entities are returned (used on frontend forms and backend pages)
Type:Â action
Example:
function example($entities) { // do action } add_action('amelia_get_entities', 'example', 10, 1);