View Categories

fluentform/entry_lists_labels

Description  #

This filter returns the input labels for the entries on the entries page.

apply_filters('fluentform/entry_lists_labels', $formLabels, $form);

Usage   #

add_filter('fluentform/entry_lists_labels', function($formLabels, $form) {
    return $formLabels;
}, 10, 2);

Parameters #

  • $formLabels (array) Form Labels
  • $form (object) Form Object

Placement #

This code should be placed in the functions.php file of your active theme.

Source Code #

This filter is located in FluentForm\App\Services\Form\FormService -> getInputsAndLabels($formId, $with = [‘admin_label’, ‘raw’])