Created
September 16, 2021 20:34
-
-
Save CapWebSolutions/4a49bbb6f7c408678f9d9db7073cf7cf to your computer and use it in GitHub Desktop.
Shortcode to insert in footer for auto adjusting copyright year. Tested in Elementor.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function cws_elementor_shortcode( $atts ) { | |
return 'Copyright' . ' © ' . date("Y"); | |
} | |
add_shortcode( 'the_copyright_year', 'cws_elementor_shortcode'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment