Description
Return the cell having expanded any shortcodes
Usage
$string = OIK_table::cell( $row, $column );Parameters
- $row
- ( integer ) required –
- $column
- ( integer ) required –
Returns
string the expanded cellSource
File name: oik-bob-bing-wide/classes/class-oik-tables.phpLines:
1 to 11 of 11
function cell( $row, $column ) { if ( isset( $this->table[$row][$column] ) ) { $cell = $this->table[$row][$column]; } else { $cell = " "; } if ( false !== strpos( $cell, "[" ) ) { $cell = bw_do_shortcode( $cell ); } return( $cell ); }View on GitHub
Called by
Invoked by
Call hooks
API Letters:
