-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-karten.php
executable file
·43 lines (37 loc) · 1.06 KB
/
wp-karten.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
35
36
37
38
39
40
41
42
43
<?php
defined('ABSPATH') or die();
/**
* @package Karten
* @version 1.0.0
*/
/*
Plugin Name: Karten
Description: Display Instagram photos on a Google Maps map
Version: 1.0.0
Author: Craig Freeman
Author URI: http://craigfreeman.net
License: GPL 2
*/
// This file is part of the Karten plugin for WordPress
//
// Copyright (c) 2012-2015 Craig Freeman. All rights reserved.
// http://craigfreeman.net
//
// Released under the GPL 2 license
// http://www.gnu.org/licenses/gpl-2.0.html
//
// **********************************************************************
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// **********************************************************************
/**
* Theme version
*/
define( 'KTN_THEME_VER', '0.1.0' );
load_plugin_textdomain( 'ktn' );
/**
* Load classes
*/
include plugin_dir_path( __FILE__ ) . 'classes/karten-setup.php';
include plugin_dir_path( __FILE__ ) . 'classes/karten-main.php';