Created
September 28, 2016 02:28
-
-
Save tonydjukic/1816f36ff407d4f5e8e75e0687bc99c2 to your computer and use it in GitHub Desktop.
Simple copyright snippet for WordPress' footer.php files.
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
<?php $time=time () ; $year=date("Y",$time); echo "© ". $year; ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> XX_CLIENTNAME_XX.</a> All Rights Reserved. <span class="sep"> | </span> Site design by: <a href="XX_devurl_XX" rel="designer">XX_DEVNAME_XX</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simple snippet that keeps the copyright year current. Just place it in the ".site-info" div in WordPress footer.php file.