You appear to be a bot. Output may be restricted
Description
Function to invoke when genesistant is loadedWhether or not we start genesistant processing depends on the the constant GENESISTANT
Constant | Value | Processing |
---|---|---|
not defined | n/a | Trace all genesis hooks |
defined | true | Trace all genesis hooks |
defined | false | Don’t trace genesis hooks |
Usage
genesistant_loaded();
Parameters
Returns
voidSource
File name: genesistant/genesistant.phpLines:
1 to 7 of 7
function genesistant_loaded() { add_action( "oik_fields_loaded", "genesistant_oik_fields_loaded" ); if ( !defined( "GENESISTANT" ) || GENESISTANT !== false ) { add_action( "all", "genesistant_all", 10, 2 ); } }View on GitHub