Created
September 16, 2021 20:34
Shortcode to insert in footer for auto adjusting copyright year. Tested in Elementor.
This file contains hidden or 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