-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdynamic-month-year-into-posts.php
27 lines (24 loc) · 1.11 KB
/
dynamic-month-year-into-posts.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
<?php
/**
* Plugin Name: Dynamic Month & Year into Posts
* Plugin URI: https://gauravtiwari.org/snippet/dynamic-month-year/
* Description: Insert dynamic year, month, dates, days, next and previous dates into content and meta using shortcodes.
* Version: 1.4.0
* Author: Gaurav Tiwari
* Author URI: https://gauravtiwari.org
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: dynamic-month-year-into-posts
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'DYNAMIC_MONTH_YEAR_INTO_POSTS_VERSION', '1.4.0' );
// Load plugin components.
require_once plugin_dir_path( __FILE__ ) . 'includes/shortcodes.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/core-filters.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/rank-math-support.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/seopress-support.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/yoast-seo-support.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/others.php';