Skip to content
Snippets Groups Projects
caldera-forms-query.php 455 B
Newer Older
  • Learn to ignore specific revisions
  • Josh Pollock's avatar
    Josh Pollock committed
    <?php
    /**
     * Plugin Name:     Caldera Query
     * Plugin URI:      PLUGIN SITE HERE
     * Description:     PLUGIN DESCRIPTION HERE
     * Author:          YOUR NAME HERE
     * Author URI:      YOUR SITE HERE
     * Text Domain:     caldera-forms-query
     * Domain Path:     /languages
     * Version:         0.1.0
     *
     */
    
    include_once __DIR__ .'/vendor/autoload.php';
    
    if( function_exists( 'add_action' ) ){
    	add_action( 'caldera_forms_includes_complete', function(){
    
    	});
    }