Find Current Year in WordPress

How to find Current Year in WordPress for footer dynamic ? In WordPress, you can create a shortcode to dynamically display the current year in your footer. Here’s how you can do it: Functions.php Approach: Add the following code to your theme’s functions.php file: function current_year_shortcode() {$year = date(‘Y’);return $year;}add_shortcode(‘current_year’, ‘current_year_shortcode’);This code defines a shortcode […]

Find Current Year in WordPress Read More »