Have you ever wondered how to add your own Copyright Meta tag to your WordPress Post?? WordPress doesn’t add default meta tag for this one. But with the help of below simple code you can achieve this functionality.
Put below code to your theme’s functions.php
file.
add_action("wp_head", "crunchify_copyright_meta"); function crunchify_copyright_meta() { if(is_singular()){ echo "<meta name='copyright' content='© Crunchify, 2012-13'>"; } }
If you want to add any other information related to your blog too then you can use the same function with different contents. Once you saved the code, you’ll see a line like this one on the head section of your html documents.