You appear to be a bot. Output may be restricted
Description
Return an array of inner tags for selected outer tagsSpecial tags include "o" and "u" – which are abbreviations for "ol" and "ul" respectively.
Usage
bw_inner_tags();
Parameters
Returns
voidSource
File name: oik/shortcodes/oik-parent.phpLines:
1 to 10 of 10
function bw_inner_tags() { $inner_tags = array( "ol" => "li" , "o" => "li" , "ul" => "li" , "u" => "li" , "div" => "div" , "p" => "span" ); return( $inner_tags ); }View on GitHub View on Trac