You appear to be a bot. Output may be restricted
Description
Returns the correct inner tag given the outerNote: When formatting a list, if you give it the right class then it can be "de-listed" and appear as a normal list quite easily You can even put commas between items. But sometimes it's easier to generate simpler HTML
Usage
$string = bw_inner_tag( $outer );
Parameters
- $outer
- ( string ) required – the outer tag for the 'list'
Returns
string the inner tag – without any <>'sSource
File name: oik/shortcodes/oik-parent.phpLines:
1 to 4 of 4
function bw_inner_tag( $outer ) { $inner = bw_array_get( bw_inner_tags(), $outer, null ); return( $inner ); }View on GitHub View on Trac