• I posted this in the wrong forum so I’ve posted it here (sorry about that)

    I’m new to WordPress and just installed my theme this morning. The problem is my blog’s title and description didn’t change automatically. I checked the settings and the fields show my blog title and description but the theme’s header doesn’t reflect it. I’ve been tinkering inside the header.php file attempting to change it myself (after reading through some ideas, but no-luck). I’m pasting the header.php code below int he hopes that someone can help me–PLEEEEAASE. And thanks so much. My blog’s title is: Global Topiks. and the description is: events. discuss them.(should I include the css style sheet here?)

    [
    <?php global $mytheme; ?>
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”&gt;
    <html xmlns=”https://www.w3.org/1999/xhtml&#8221; <?php language_attributes(); ?>>
    <head profile=”https:///xfn/11″&gt;

    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />

    <title><(); ?></title>

    <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’); ?>” />
    <link rel=”shortcut icon” href=”<?php bloginfo(‘template_directory’); ?>/favicon.ico” />

    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/jquery-1.2.6.pack.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/custom.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/reflection.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/prototype.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/effects.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/carousel.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/niftycube.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/niftyLayout.js”></script>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/scripts/tabs.js”></script>

    <?php wp_head(); ?>

    </head>
    <body>

    <?php include TEMPLATEPATH. ‘/templates/header.html’; ?>

    <title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> ? Blog Archive <?php } ?> <?php wp_title(); ?></title> ]

Viewing 1 replies (of 1 total)
  • Hi

    In this code

    <body>
    <?php include TEMPLATEPATH. '/templates/header.html'; ?>
    <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> ? Blog Archive <?php } ?> <?php wp_title(); ?></title> ]

    this line
    <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> ? Blog Archive <?php } ?> <?php wp_title(); ?></title> ]

    does not belong, at all, within the body tag. Is it possible in your attempts to fix your problem that you unintentionally messed up the code in header.php?

    keep the version that is there now saved under a different name, but I suggest you upload a new copy of your theme’s header.php file

    The code you posted, by the way, ends before where the code in header.php should end – perhaps that is part of the problem – its not all there.

    Also, when you post long segments of code its preferred that you do so in a pastebin and link to the pastebin URL in your post –
    https://wordpress.pastebin.ca/

Viewing 1 replies (of 1 total)
  • The topic ‘How to change my blog’s title and description (checked settings)’ is closed to new replies.