|

srfm_core_loaded

Description

The ‘srfm_core_loaded’ is an action hook that runs after the main files of the SureForms plugin are loaded.

You can use it to set up your custom settings or initialize other plugins that depend on SureForms.

Parameters

None

Hook Source

PHP
/**
* hook source
 */
do_action( 'srfm_core_loaded' );

Hook Usage

PHP
add_action(‘srfm_core_loaded', 'your_custom_function', 10, 0);

function your_custom_function( )
{
   //Add code here
}

Hook Example

PHP
add_action(‘srfm_core_loaded', 'your_custom_function', 10, 0);

function your_custom_function( )
{
   //Add code here
}
Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
On this page
Scroll to Top