Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Created May 5, 2017 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Shelob9/a8c644e09622e9df6e92d037b4eabf37 to your computer and use it in GitHub Desktop.
Save Shelob9/a8c644e09622e9df6e92d037b4eabf37 to your computer and use it in GitHub Desktop.
<?php
/**
* Check if Caldera Forms is active
*/
if( defined( 'CFCORE_VER' ){
//Caldera Forms is active
}else{
//Caldera Forms is not active
}
<?php
add_action( 'caldera_forms_includes_complete', 'my_addon_init' );
function my_addon_init(){
//start your Caldera Form add-on code here, since Caldera Forms is loaded and Caldera Forms Autoloader is inititialized
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment