-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-heschl.php
32 lines (26 loc) · 946 Bytes
/
wp-heschl.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
<?php
/**
* Plugin Name: WP-Heschl
* Plugin URI: https://rayremnant.xyz
* Description: Organizing and viewing data for affiliate marketing
* Version: 1.0
* Author: RayRemnant
* Author URI: https://rayremnant.xyz
* Text Domain: wp-heschl
* Domain Path: /languages
**/
define('PLUGIN_DIR', plugin_dir_path( __FILE__ ));
define('PLUGIN_URL', plugin_dir_url( __FILE__ ));
define('UPLOAD_DIR', wp_upload_dir()); //use the ['url'] element
//include 'new-functions.php';
//include 'wp-blocks/block-product.php';
//include 'wp-blocks/block-pc-build.php';
//include 'wp-blocks/block-mini-box.php';
//include 'wp-blocks/block-graph-grid.php';
include 'wp-blocks/archon-product.php';
include 'wp-blocks/archon-notes.php';
include 'omni-atlas.php';
/* function wp_archon_load_textdomain() {
load_plugin_textdomain( 'wp-archon', false, basename( PLUGIN_DIR ) . '/languages' );
}
add_action( 'plugins_loaded', 'wp_archon_load_textdomain' ); */