Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
Thank you very much!
My WordPress theme uses the following code to display the current year:
© 2013-<?php echo date('Y'); ?> John Doe. All Rights Reserved.
I would like to somehow modify my phplugins.php to do the same. It currently looks like this:
function ttg_footer( $style, $path ) {
if (G_STYLE == 'CE2-WORDPRESS') {
return true;
} else {
echo '<div id="custom_footer" class="footer">
<div id="custom_footer_content"><p>© 2013-2014 John Doe. All Rights Reserved.
</p></div>
</div>';
}
return false;
} // END
How can I achieve this?
Pages: 1