zbench, footer.php
When written the zbench theme’s footer text was
Copyright © 2013 wiki.davelevy.info | Powered by zBench and WordPress
This isn’t what I want.
There follows an extract from footer.php in the zbench theme. The rest of the article discusses how to change it.
<p>
<?php _e(‘Copyright’, ‘zbench’); ?> © <?php echo date(“Y”); ?> <?php bloginfo(‘name’); ?>
| <?php printf(__(‘Powered by %1$s and %2$s’, ‘zbench’),
‘<a href=”http://zww.me”>zBench</a>’, ‘<a href=”http://wordpress.org/”>WordPress</a>’); ?>
</p>
_e is a translation function. It is part of wordpress, in ${WP_HOME}/wp-includes/l10n.php. As you can see I have now changed the footer text. I did so using the _e function, but maybe should have just replaced it with hard coded html. I aslo removed the © string, which is HTML and renders as ©. I have copied footer.php to the custom child theme folder which is where I made the changes
I have a community forum article here.