JoeHana
1/8/2015 - 8:11 PM

Disallow Indexing on Print Pages

Disallow Indexing on Print Pages

<?php

/**
 * Disallow Indexing on Print Pages
 */

add_filter( 'wpsight_head_print', 'custom_robots_disallow', 5 );

function custom_robots_disallow() {
	
	echo '<meta name="robots" content="noindex" />';
	
}