You appear to be a bot. Output may be restricted
Description
Turn on anychangeingIf the BW_TRACE_ANYCHANGE constant is defined then we turn on output buffering and monitor the output buffer for the string on every action or filter hook We might catch the output eventually and that might be enough.
Usage
bw_trace_anychange_on();
Parameters
Returns
voidSource
File name: oik-bwtrace/includes/bwtrace-anychange.phpLines:
1 to 8 of 8
function bw_trace_anychange_on() { if ( defined( "BW_TRACE_ANYCHANGE" ) && BW_TRACE_ANYCHANGE !== null ) { add_action( "all", "bw_trace_anychange", 9999, 9 ); bw_trace2( BW_TRACE_ANYCHANGE, "anychange activated", false ); } else { bw_trace2( BW_TRACE_ANYCHANGE, "Invalid constant BW_TRACE_ANYCHANGE", false, BW_TRACE_ERROR ); } }View on GitHub View on Trac