forked from crowdfavorite/wp-taxonomy-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
taxonomy-landing.php
44 lines (37 loc) · 1.36 KB
/
taxonomy-landing.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
/*
Plugin Name: Taxonomy Landing Pages
Plugin URI: https://github.com/crowdfavorite/wp-taxonomy-landing
Description: Allow separately designed landing pages for taxonomy archives.
Version: 1.0.2
Author: Crowd Favorite
Author URI: http://crowdfavorite.com
*/
/**
* @package taxonomy-landing
*
* This file is part of Carrington Build for WordPress
* http://crowdfavorite.com/wordpress/plugins/taxonomy-landing/
*
* Copyright (c) 2009-2011 Crowd Favorite, Ltd. All rights reserved.
* http://crowdfavorite.com
*
* Released under the GPL license
* http://www.opensource.org/licenses/gpl-license.php
*
* **********************************************************************
* 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.
* **********************************************************************
*/
// ini_set('display_errors', '1'); ini_set('error_reporting', E_ALL);
if (!defined('CF_TEMPLATE_LANDING_VERSION')) {
define('CF_TEMPLATE_LANDING_VERSION', '1.0.2');
if (!defined('PLUGINDIR')) {
define('PLUGINDIR', 'wp-content/plugins');
}
load_plugin_textdomain('cf-tax-landing');
include('functions/cftl-post-type.php');
include('functions/cftl-intercept-queries.php');
} // End CF_TEMPLATE_LANDING_VERSION check