You appear to be a bot. Output may be restricted
Description
Return the next unique ID for the read_more selector
Usage
oik_rm_id();
Parameters
Returns
voidSource
File name: oik-read-more/shortcodes/oik-read-more.phpLines:
1 to 9 of 9
function oik_rm_id() { global $oik_rm_id; if ( is_null( $oik_rm_id ) ) { $oik_rm_id = 0; } $oik_rm_id++; return( "bw_more-$oik_rm_id" ); }View on GitHub View on Trac