You appear to be a bot. Output may be restricted
Description
Echoes captured HTMLSince we're going to capture scripts ourselves then we need to implement a footer function to echo the captured stuff later on. We respond to wp_footer and admin_print_footer_scripts to do this.
Usage
dependencies_cache::echo_captured_html();
Parameters
Returns
voidSource
File name: oik/libs/class-dependencies-cache.phpLines:
1 to 6 of 6
function echo_captured_html() { if ( $this->captured_html ) { echo $this->captured_html; } $this->captured_html = null; }View on GitHub View on Trac