You appear to be a bot. Output may be restricted
Description
Request plugins to load their field forming functions
Usage
bw_pre_form_field();
Parameters
Returns
voidSource
File name: oik/includes/bw_metadata.phpLines:
1 to 13 of 13
function bw_pre_form_field() { static $bw_pre_form_field = 0; if ( 0 === $bw_pre_form_field ) { /** * Request plugins to load field forming functions * * Any plugin that provides a field forming function should respond to this action by loading the hooks that may be called to form fields. */ do_action( "oik_pre_form_field" ); } $bw_pre_form_field++; }View on GitHub View on Trac