-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustom-template-learndash.php
34 lines (30 loc) · 1.21 KB
/
custom-template-learndash.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Plugin Name: Custom Template for LearnDash
* Plugin URI: https://github.com/brainstormforce/custom-template-learndash
* Description: This plugin will help you replace default LearnDash course template for non-enrolled students with a custom template. You can design the custom template with any page builder of your choice.
* Author: Pratik Chaskar
* Author URI: https://pratikchaskar.com/
* Text Domain: custom-template-learndash
* Domain Path: /languages
* Version: 1.0.6
*
* @package Custom Template for LearnDash
*/
// Set Option to flush the rewrite rule after activation of plugin.
register_activation_hook( __FILE__, 'ctlearndash_activation' );
/**
* Set option that states plugin is activated.
*
* @since 1.0.2
* @return void
*/
function ctlearndash_activation() {
add_option( 'ctlearndash_activation', 'is-activated' );
}
define( 'CTLEARNDASH_VER', '1.0.6' );
define( 'CTLEARNDASH_FILE', __FILE__ );
define( 'CTLEARNDASH_DIR', plugin_dir_path( __FILE__ ) );
define( 'CTLEARNDASH_URL', plugins_url( '/', __FILE__ ) );
define( 'CTLEARNDASH_PATH', plugin_basename( __FILE__ ) );
require_once CTLEARNDASH_DIR . 'classes/class-ctlearndash-loader.php';