Bei den SEO-Einstellung Titel wird empfohlen
<title><?php wp_title(''); ?></title>
in die header php zu kopieren.
Das habe ich gemacht - schaut so aus:
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
?><!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
[COLOR="Red"]<title><?php wp_title(''); ?></title>
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;[/COLOR]
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
Auf meiner Seite
http://www.klaus-wagenhaeuser.de
steht jetzt oben link /**Print the
was ist da falsch gelaufen?
Was hat es mit diesem Print the <title> Tag auf sich?
Danke schonmal