Simply paste the following piece of code on your functions.php. Don’t forget to modify line 5 according to your needs.
add_action("wp_head", "my_copyright_meta");
function my_copyright_meta() {
if(is_singular()){
echo "<meta name="copyright" content="© Me, 2011">";
}
}
Once you saved the code, you’ll see a line like this one on the head section of your html documents:
<meta name="copyright" content="© Me, 2011">
Thanks to Daniel Pataki for the cool tip!
Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can try it for free!
How to add your own meta copyright to your WordPress blog