|

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:

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

Hook Usage:

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

function your_custom_function( )
{
   //Add code here
}

Hook Example:

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
%title %title
On this page
Scroll to Top