Create a shortcode to display the current year in french

Home » Snippets » Create a shortcode to display the current year in french
0

Created with:

Visibility: 

public

Creator: Alex

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
					<?php

// Enregistre le shortcode [annee-courante].
// Copiez-le dans le pied de page de votre site 
function wpm_current_year_shortcode() {
    return date('Y');
}
add_shortcode('annee-courante', 'wpm_current_year_shortcode');
				

Register an account to save your snippets or go Pro to get more features.