| Current Path : /home/dtconseimw/www.2025.hack/wp-content/themes/dt-the7/inc/shortcodes/includes/year/ |
| Current File : /home/dtconseimw/www.2025.hack/wp-content/themes/dt-the7/inc/shortcodes/includes/year/year.php |
<?php
/**
* @package The7
*/
defined( 'ABSPATH' ) || exit;
/**
* Return current year.
*
* @return false|string
*/
function the7_year_shortcode() {
return date( 'Y' );
}
add_shortcode( 'dt_year', 'the7_year_shortcode' );