Skip to content

mc_location_manager_cells

github-actions[bot] edited this page Jun 3, 2026 · 4 revisions

Add custom column table cells to Location Manager.

Auto-generated Example

add_filter(
   'mc_location_manager_cells',
    function(
        string $custom_location_cells,
        object $location
    ) {
        // Your code here.
        return $custom_location_cells;
    },
    10,
    2
);

Parameters

  • string $custom_location_cells HTML output. Appends HTML in the end column of the location manager table row.
  • object $location Locatino object.

Returns

string

Files

apply_filters( 'mc_location_manager_cells', '', $location )

← All Hooks

Clone this wiki locally