PluginProbe
Current Year Shortcode VICT / 1.18
Current Year Shortcode VICT v1.18
1.21 trunk 1.18 1.19 1.20
current-year-shortcode-vict / current-year-shortcode-vict.php

current-year-shortcode-vict.php in Current Year Shortcode VICT 1.18, at current-year-shortcode-vict.php

20 lines 465 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Current Year Shortcode VICT
4 * Version: 1.18
5 * Description: A shortcode to display the current year.
6 * Requires at least: 6.0
7 * Requires PHP: 8.0
8 * Author: Voordelig ICT
9 * Author URI: https://voordeligict.nl
10 * License: GPLv2 or later
11 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
12 */
13
14 function vict_showYear() {
15 $year = gmdate('Y');
16 return $year;
17 }
18 add_shortcode('vict_year', 'vict_showYear');
19
20 ?>