/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
custom-file-downloader
/
Upload File
HOME
<?php /** * Plugin Name: Custom File Downloader * Description: A plugin to download files after submitting a form. * Version: 1.0 * Author: BarefootLaw */ if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } // Global variables for tracking define('CFD_PLUGIN_DIR', plugin_dir_path(__FILE__)); define('CFD_PLUGIN_URL', plugin_dir_url(__FILE__)); // Include other necessary files require_once CFD_PLUGIN_DIR . 'functions.php'; // Register shortcode add_shortcode('custom_file_downloader', 'cfd_shortcode');