• How would I go about removing the text title on the top of this page?

    Thanks for the help. Of course I want to keep the title in the admin area so it remains in the browser, but I don’t want it on the actual site.

    https://tinyurl.com/3cjosue

Viewing 4 replies - 1 through 4 (of 4 total)
  • In your template folder in the header file look for: <?php bloginfo(‘name’); ?> and remove it.

    Thread Starter goblue7

    (@goblue7)

    I removed it from the header.php file but it is still showing up. Is it in another location as well? Thanks for help.

    It was on this line right before <title>

    <title><?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>

    Thread Starter goblue7

    (@goblue7)

    It appears it is below it, listed again, maybe it needs to be removed from both places I assume.

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />

    Thread Starter goblue7

    (@goblue7)

    I figured it out. It was down below a little further on the page. Thanks for the help. I appreciate it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing text title’ is closed to new replies.