is_acpt_field_visible

is_acpt_field_visible

Check if a field is visible or not (based on its value).

Usage

is_acpt_field_visible([
    'post_id' => 123,
    'box_name' => 'box',
    'field_name' => 'field'
]);

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) (Optional) The parent field name, only for Repeater/Flexible nested fields

  • index (integer) (Optional) The field numeric index, only for Repeater/Flexible nested fields

  • block_name (string) (Optional) The parent block name, only for Flexible nested fields

  • block_index (integer) (Optional) The parent block numeric index, only for Flexible nested fields

Return

  • boolean

Last updated