Black friday and cyber monday promo Black friday and cyber monday promo
Black friday and cyber monday promo
Grab now

Amelia WP Hooks for Entities

Content

Please note that using hooks requires a certain level of programming skills and included support refers only to advice.

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);