There was an error while loading. Please reload this page.
get_aeria_metabox($post, $metabox)
To get all the fields for a single metabox, you can call get_aeria_metabox.
get_aeria_metabox
$post
$metabox
The returned value is an array containing all the metabox's fields and, in case of multiple fields, their children too.
function getMetabox () { $meta = get_aeria_metabox(get_post(), "metabox1"); return $meta; } add_action('aeria_booted', 'getMetabox');