Skip to content

Instantly share code, notes, and snippets.

@nkb-bd
Created January 15, 2025 05:05
Show Gist options
  • Save nkb-bd/550b4b8402566e233ebd3dd1cc12e775 to your computer and use it in GitHub Desktop.
Save nkb-bd/550b4b8402566e233ebd3dd1cc12e775 to your computer and use it in GitHub Desktop.
Adding new column in WP Fluent Form Entries Page
add_filter('fluentform/submission_resources',function ($resources){
$resources['labels'] = [
'my-label' => 'Label Value'
];
return $resources;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment