add_action('wp_head', 'theme_no_follow_portfolio');
function theme_add_viewport_meta() {
if(is_singular('portfolio')){
echo "\n" . '<meta name="robots" content="noindex,nofollow">' . "\n";
}
}
PHP Fatal error: Cannot redeclare theme_add_viewport_meta() (previously declared in /var/www/vhosts/site.com/httpdocs/wp-content/themes/striking-child/functions.php:26) in /var/www/vhosts/site.com/httpdocs/wp-content/themes/striking/framework/functions/head.php on line 220
function mySearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','mySearchFilter');It looks like you're new here. If you want to get involved, click one of these buttons!