cannot figure out how to remove site title..
-
I can usually find these things in the themes and comment them out if the theme does not offer it directly…
I want the title and tagline to NOT display in the header, but to still be read by search engines.
site is: https://www.radbrains.com
I have found this in the header.php file:
<head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="<?php $site_description= get_bloginfo('description', 'display'); echo $site_description; ?>"> <meta name="author" content="<?php echo get_bloginfo('name'); ?>"> <title><?php global $wordstrap_theme_options, $page, $paged; // Add wp_title () wp_title( '|', true, 'right' ); // Add a page number if necessary: if ($paged >= 2 || $page >= 2) echo ' | ' . sprintf(__('Page %s', 'wordstrap'), max($paged, $page)); ?></title>
But I am not sure if this is the right section of code to mess with…Is it and how do I do it?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘cannot figure out how to remove site title..’ is closed to new replies.