get_acpt_child_field

get_acpt_child_field

Fetch a nested field value (only for Repeater fields).

Usage

get_acpt_child_field([
    'post_id' => 123,
    'box_name' => 'box',
    'field_name' => 'field',
    'parent_field_name' => 'parent_field',
    'index' => 0
]);

Parameters

  • post_id (integer) (Required if term_id, user_id and option_page are null) The post ID

  • term_id (integer) (Required if post_id, user_id and option_page are null) The term ID

  • user_id (integer) (Required if post_id, term_id and option_page are null) The user ID

  • option_page (string) (Required if post_id, term_id and user_id are null) The option page slug

  • box_name (string) (Required) The box name

  • field_name (string) (Required) The field name

  • parent_field_name (string) (Required) The parent field name

  • index (integer) (Required) The field numeric index

Return

  • mixed

Last updated