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″>”;
}
}
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″>”;
}
}