Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter ezekielcp

    (@ezekielcp)

    bump help pls

    I think you have to look in your header.php.

    Thread Starter ezekielcp

    (@ezekielcp)

    this is what I have in my header.php what should I change? I cant figure it out!

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="content-type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
    <meta name="description" content="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>" />
    <meta name="keywords" content="" />
    <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" />
    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
    <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <title><?php bloginfo('name'); wp_title(); ?></title>
    <?php wp_head(); ?>
    </head>
    
    <body>
    <div id="wrap">
    
    <div id="header">
    <h1><a>"><?php bloginfo('name'); ?></a></h1>
    <p><strong><?php bloginfo('description'); ?></strong></p>
    </div>
    
    <a href="https://www.crossfitcoastal.com"><img id="frontphoto" src="<?php bloginfo('template_directory'); ?>/img/header/rotate.php" alt="Wilmington Crossfit Personal Trainers - Fitness Group Exercise" /></a>
    
    <div id="leftside">
    
    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Main Sidebar') ) : else : ?>
    
    <h2 class="hide">Main menu:</h2>
    <ul class="page">
    <?php if (is_page()) { $highlight = "page_item"; } else {$highlight = "page_item current_page_item"; } ?>
    <li class="<?php echo $highlight; ?>"><a>">Home</a>
    <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
    
    <?php endif; ?>
    
    </div>

    So, let’s approach this logically.

    As you noticed from the your theme’s header, it uses the following line to generate the <title> tag:

    <title><?php bloginfo('name'); wp_title(); ?></title>

    We can learn about bloginfo and wp_title by click on the Docs link at the top of all these pages.

    bloginfo(‘name’) displays your blog’s name.

    wp_title() displays the title of the post. Check out that Default Usage section and then the section right below it on how to change the separator.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Small tick marks on my page title. How to remove?’ is closed to new replies.