mc_location_manager_cells - joedolson/my-calendar GitHub Wiki

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