-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordpress-date-shortcodes.php
101 lines (86 loc) · 3.55 KB
/
wordpress-date-shortcodes.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
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Plugin Name: WordPress Date Shortcodes
* Description: Adds shortcodes for current, published, and last modified year and month.
* Author: Infinitnet
* Author URI: https://infinitnet.io/
* Plugin URI: https://github.com/infinitnet/wordpress-date-shortcodes
* Update URI: https://github.com/infinitnet/wordpress-date-shortcodes
* Version: 1.3.5
* License: GPLv3
* Text Domain: wordpress-date-shortcodes
*/
// Main function
if ( ! function_exists( 'infinitnet_date_shortcode' ) ) {
function infinitnet_date_shortcode( $type, $format, $atts ) {
$atts = shortcode_atts( array('adjust' => 0), $atts );
$adjustment = intval($atts['adjust']);
switch ( $type ) {
case 'current':
$date_obj = new DateTime('now', new DateTimeZone(wp_timezone_string()));
$date_obj->modify("$adjustment days");
$date = date_i18n($format, $date_obj->getTimestamp());
break;
case 'published':
case 'modified':
$post = get_post();
if (!$post || !$post->ID) {
return apply_filters('infinitnet_date_empty', '', $type, $format);
}
$date_string = ($type === 'published')
? $post->post_date
: $post->post_modified;
$date = DateTime::createFromFormat(
'Y-m-d H:i:s',
$date_string,
new DateTimeZone('UTC')
)->setTimezone(new DateTimeZone(wp_timezone_string()));
$date->modify("$adjustment days");
$date = date_i18n($format, $date->getTimestamp());
break;
default:
return '';
}
return $date;
}
}
require_once plugin_dir_path( __FILE__ ) . 'includes/class-date-shortcodes.php';
Date_Shortcodes::register_shortcodes();
// Unified function to process meta content with shortcodes
function infinitnet_process_meta_content( $content ) {
return do_shortcode( $content );
}
// Attach the function to filters for Rank Math, Yoast, and SEOPress
add_filter( 'rank_math/frontend/title', 'infinitnet_process_meta_content' );
add_filter( 'rank_math/frontend/description', 'infinitnet_process_meta_content' );
add_filter( 'wpseo_title', 'infinitnet_process_meta_content' );
add_filter( 'wpseo_metadesc', 'infinitnet_process_meta_content' );
add_filter( 'seopress_titles_title', 'infinitnet_process_meta_content' );
add_filter( 'seopress_titles_desc', 'infinitnet_process_meta_content' );
// Filters for processing shortcodes in Contextual Related Posts (CRP) plugin
add_filter('crp_title', 'do_shortcode');
add_filter('crp_thumb_title', 'do_shortcode');
add_filter('crp_thumb_alt', 'do_shortcode');
// Filter for processing shortcodes in all titles
function infinitnet_process_all_titles( $title ) {
static $processing = false;
if ( ! is_admin() && ! $processing ) {
$processing = true;
$title = do_shortcode( $title );
$processing = false;
}
return $title;
}
add_filter( 'the_title', 'infinitnet_process_all_titles' );
// Process shortcodes in Rank Math breadcrumbs
add_filter('rank_math/frontend/breadcrumb/items', function($crumbs, $class) {
foreach ($crumbs as &$crumb) {
if (isset($crumb[0])) {
$crumb[0] = infinitnet_process_meta_content($crumb[0]);
}
}
return $crumbs;
}, 10, 2);