Filter acf_tablefield/get_table/cell_content
This filter enables changing the content of table cells HTML elements using get_table()
or other table HTML returning functions and methodes.
Parameters
add_filter( 'acf_tablefield/get_table/cell_content', function( $cell_content, $param ) {
return $cell_content;
}, 10, 2 );
-
$cell_content
The content of the cell.
-
$param['elem_slug']
-
$param['data_key']
-
$param['table_options']
-
$param['row_options']
-
$param['cell_options']
-
$param['row_index']
-
$param['col_index']