How to add your own meta copyright – WordPress

Paste the following code in functions.php

add_action(“wp_head”, “my_copyright_meta”);

function my_copyright_meta() {
if(is_singular()){
echo “<meta name=”copyright” content=”© phpcodez.com  2011″>”;
}
}

Leave a Reply

Your email address will not be published. Required fields are marked *