Menu

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

1 Comment

Leave a Reply to A WordPress Commenter Cancel reply

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

function add_noindex_to_all_pages() { if( is_page() || is_single() ) { // applies to all pages and posts echo ''; } } add_action('wp_head', 'add_noindex_to_all_pages');