Skip to content

Instantly share code, notes, and snippets.

@vicctim
Created October 9, 2023 13:22
Show Gist options
  • Save vicctim/f259e9f41a8614bbb704a4852ff93f90 to your computer and use it in GitHub Desktop.
Save vicctim/f259e9f41a8614bbb704a4852ff93f90 to your computer and use it in GitHub Desktop.
ano atual
// Função para retornar o ano atual
function ano_atual_shortcode() {
$ano_atual = date('Y');
return $ano_atual;
}
// Registrar o shortcode
add_shortcode('ano_atual', 'ano_atual_shortcode');
@vicctim
Copy link
Author

vicctim commented Oct 9, 2023

[ano_atual]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment