1. Home
  2. Docs
  3. INTERNAL API
  4. Filters reference
  5. lmfwc_table_licenses_column_name

lmfwc_table_licenses_column_name

DESCRIPTION

This filter is used to add or modify column headers on the Licenses page/table.

PARAMETERS

Name Type Description
$columns Array Array containing key/value pairs of existing columns.

USAGE

[php]add_filter('lmfwc_table_licenses_column_name', function($columns) {
  $columns['foo_fighters'] = 'Foo Fighters';
​
  return $columns;
});[/php]

This will add a new column by the name of Foo Fighters.

Was this article helpful to you? Yes No

How can we help?