-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
31 lines (28 loc) · 934 Bytes
/
functions.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
<?php
/**
* Theme functions and definitions.
*
* Sets up the theme and provides some helper functions
*
* When using a child theme (see http://codex.wordpress.org/Theme_Development
* and http://codex.wordpress.org/Child_Themes), you can override certain
* functions (those wrapped in a function_exists() call) by defining them first
* in your child theme's functions.php file. The child theme's functions.php
* file is included before the parent theme's file, so the child theme
* functions would be used.
*
*
* For more information on hooks, actions, and filters,
* see http://codex.wordpress.org/Plugin_API
*
* @since 1.0.0
* @package Munipay
* @link http://http://boltmedia.ca
* @copyright Copyright (C) 2018, BoltMedia - [email protected]
*/
defined( 'ABSPATH' ) || exit;
define( 'MUNIPAY_SANDBOX', false );
/**
* Start the engine.
*/
get_template_part( 'includes/class-munipay' );