You appear to be a bot. Output may be restricted
Description
Append the final div tags for the hidden content.
Usage
$string = oik_rm_end( $content );
Parameters
- $content
- ( string ) required – the HTML content
Returns
string the content with the appended div tagSource
File name: oik-read-more/shortcodes/oik-read-more.phpLines:
1 to 13 of 13
function oik_rm_end( $content ) { static $done = 0; global $oik_rm_id; $todo = $oik_rm_id - $done; while ( $todo ) { $content .= "<!-- bw_more_end --></div>"; $todo--; } $done = $oik_rm_id; // remove_filter( "bw_more_end" ); return( $content ); }View on GitHub View on Trac