Urban Giraffe Support | HeadSpace
HeadSpace2 - not delivering the input metadata
I just installed HeadSpace2 and its elements appear in WordPress OK. But the metadata that I input is not appearing on my pages. For example, the Page Title should be "Web Copywriter SEO Copywriter Sydney Website Copywriting". But it's not there. Nor are the keywords. But the Description is there (if a little truncated). I've read that it needs to "Call wp_head" but it seems to be doing that.
Here is what is in the header.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<!-- leave this for stats please -->
<link rel="Shortcut Icon" href="<?php echo get_settings('home'); ?>/wp-content/themes/whitespace/images/favicon.ico" type="image/x-icon" />
<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'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php wp_head(); ?>
<style type="text/css" media="screen">
<!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); -->
</style>
</head>
Here is the HTML that is being produced:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en, sv" />
<meta name="generator" content="WordPress 2.5.1" />
<!-- leave this for stats please -->
<link rel="Shortcut Icon" href="http://web-copywriter.com.au/wp-content/themes/whitespace/images/favicon.ico" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://web-copywriter.com.au/feed/" />
<link rel="alternate" type="text/xml" title="RSS .92" href="http://web-copywriter.com.au/feed/rss/" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="http://web-copywriter.com.au/feed/atom/" />
<link rel="pingback" href="http://web-copywriter.com.au/xmlrpc.php" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://web-copywriter.com.au/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://web-copywriter.com.au/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 2.5.1" />
<meta name="description" content="The Web Copywriter is a Sydney based SEO Copywriter who has created award-winning SEO Website Copywr" />
<style type="text/css" media="screen">
<!-- @import url( http://web-copywriter.com.au/wp-content/themes/whitespace/style.css ); -->
</style>
</head>
I am using wordpress 2.5.1
Regards
Allen
The site is http://www.web-copywriter.com.au
Responses
Posted 3 months ago by Key Master
Allen, you need to include the title in your theme. See the default theme for a full example, but something like this:
<title><?php wp_title (); ?></title>
Reply
You must log in to post.