Ich hab hier n großes Problem, und zwar Wordpress setzt bei mir alles auf noindex und nofollow, aber nirgends hab ich aber sowas reingeschrieben, oder irgendwo im seo Plugin n haken gesetzt.
PHP
[B]Quelltext[/B]
</style>
[B]<meta name='robots' content='noindex,nofollow' /> [/B]
<link rel="alternate" type="application/rss+xml" title="xxxx » xxxxx und xxxxx Kommentar Feed" href="http://www.xxxxxx.org/feed/" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.xxxxxx.org/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.xxxxxx.org/wp-includes/wlwmanifest.xml" />
<link rel='index' title='xxxxxx' href='http://www.xxxxxxx.org' />
<meta name="generator" content="WordPress 2.8" />
-------
Im Quelltext (header) steht sowieso mehr drin als im header.php. Das versteh ich sowieso nicht. Das Theme wechseln bringt auch nix, dachte s könnte daran liegen. auch das Deaktivieren der Plugins bringt keine Veränderung.
[B]Header.php[/B]
<!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'); ?>" />
<title><?php wp_title(' '); ?><?php if(wp_title(' ', false)) { echo ' · '; } ?><?php bloginfo('name'); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<?php if( is_page('Impressum') ) { echo "<meta name=\"robots\" content=\"noindex\" />"; } ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="xxxxx » xxxxx und xxxxx Kommentar Feed" href="http://www.xxxxxxx.org/feed/" />
<style type="text/css" media="screen">
</style>
<?php wp_head(); ?>
</head>
<body>
<div id="page">
<div id="header">
<div id="headerimg">
<?php /* If this is a category archive */ if (is_category()) { ?>
<h1><?php single_cat_title(''); ?></h1>
<h3>at <a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h3>
<?php /* If this is a single post */ } elseif (is_single()) { ?>
<h1><?php the_title(); ?></h1>
<h3>at <a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h3>
<?php /* Everything else */ } else { ?>
<h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<h3><?php bloginfo('description'); ?></h3>
<?php } ?>
</div>
</div>
<div id="ad_hf">
<?php include (TEMPLATEPATH . '/header_adverts.php'); ?>
</div>
Alles anzeigen