You appear to be a bot. Output may be restricted
Description
Use bw_flush() to echo the contents of $bwecho then empty itYou may need to use this before calling a WordPress function that echoes its output directly rather than through a buffer. e.g. before calling settings_fields()
Usage
bw_flush();
Parameters
Returns
voidSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 9 of 9
function bw_flush() { global $bwecho; echo $bwecho; //bw_trace( "inside bw_flush" ); //bw_trace( $bwecho ); //bw_trace( "after" ); $bwecho = NULL; // bw_backtrace(); }View on GitHub View on Trac