-
Notifications
You must be signed in to change notification settings - Fork 1
/
yearly-archive-facetwp.php
103 lines (90 loc) · 3.53 KB
/
yearly-archive-facetwp.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
/**
* Yearly Archive FacetWP
*
* @author Luca Grandicelli - https://www.lucagrandicelli.it
* @copyright Copyright (C) 2018, Luca Grandicelli - https://www.lucagrandicelli.it
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License, version 3 or higher
* @link https://github.com/lucagrandicelli/yearly-archive-facetwp
* @package Yearly_Archive_FacetWP
* @since 1.0.0
*
* @wordpress-plugin
* Plugin Name: Yearly Archive FacetWP
* Plugin URI: https://github.com/lucagrandicelli/yearly-archive-facetwp
* Description: This is a free add-on for the FacetWP plugin (https://facetwp.com/). It adds a new facet type called "Yearly Archive" which can display a list of years with an associated counter of published posts.
* Version: 2.0.0
* Author: Luca Grandicelli
* Author URI: https://www.lucagrandicelli.it
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: yearly-archive-facetwp
* Domain Path: /languages
*
* Yearly Archive FacetWP is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* any later version.
*
* Yearly Archive FacetWP 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. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Yearly Archive FacetWP. If not, see http://www.gnu.org/licenses/gpl-3.0.html
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Currently plugin version.
* Start at version 1.0.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'YAF', '2.0.0' );
/**
* Plugin's prefix.
*/
define( 'PLUGIN_PREFIX', 'YAF' );
/**
* Custom constants.
*/
define( 'MAIN_FACETWP_CLASS', 'FacetWP' );
/**
* The code that runs during plugin activation.
* This action is documented in includes/class-yearly-archive-facetwp-activator.php
*/
function activate_yearly_archive_facet() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-yearly-archive-facetwp-activator.php';
Yearly_Archive_FacetWP_Activator::activate();
}
/**
* The code that runs during plugin deactivation.
* This action is documented in includes/class-yearly-archive-facetwp-deactivator.php
*/
function deactivate_yearly_archive_facet() {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-yearly-archive-facetwp-deactivator.php';
Yearly_Archive_FacetWP_Deactivator::deactivate();
}
register_activation_hook( __FILE__, 'activate_yearly_archive_facet' );
register_deactivation_hook( __FILE__, 'deactivate_yearly_archive_facet' );
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require plugin_dir_path( __FILE__ ) . 'includes/class-yearly-archive-facetwp.php';
/**
* Begins execution of the plugin.
*
* Since everything within the plugin is registered via hooks,
* then kicking off the plugin from this point in the file does
* not affect the page life cycle.
*
* @since 1.0.0
*/
function run_yearly_archive_facet() {
$plugin = new Yearly_Archive_FacetWP();
$plugin->run();
}
run_yearly_archive_facet();