Tengo un wordpress, y la verdad es que hay cosas en el head, que me han salido automaticamente y no las entiendo... Se repiten muchas cosas y la verdad no tengo ni idea de porque... Y claro, tambien me da miedo modificarlo por si acaso.
El caso es que viendo el codigo fuente de la web, esta se ve así:
Código PHP:
<!DOCTYPE html>
<html dir="ltr" lang="es-ES">
<head>
<meta charset="UTF-8" />
<title>Caida graciosa | Videos de humor y fotos de humor</title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="http://www.humorhumor.com/wp-content/themes/xxx/style.css" />
<link rel="pingback" href="http://www.humorhumor.com/xmlrpc.php" />
<link rel="alternate" type="application/rss+xml" title="Videos de humor y fotos de humor » Feed" href="http://www.humorhumor.com/feed/" />
<link rel="alternate" type="application/rss+xml" title=" Videos de humor y fotos de humor » Comments Feed" href="http://www.humorhumor.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title=" Videos de humor y fotos de humor » Caida graciosa Comments Feed" href="http://www.humorhumor.com/Caida-graciosa /feed/" />
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www.humorhumor.com/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.humorhumor.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.humorhumor.com/wp-includes/wlwmanifest.xml" />
<link rel='index' title=' Videos de humor y fotos de humor ' href='http://www.humorhumor.com/' />
<meta name="generator" content="WordPress 3.0.1" />
<link rel='canonical' href=' http://www.humorhumor.com/Caida-graciosa /' />
<link rel='shortlink' href='http://www.humorhumor.com/?p=9019' />
<!-- all in one seo pack 1.4.6.13 [82,205] -->
<meta name="description" content="Muy gracioso este video, donde las caídas y los golpes son la única razón de ser jeje." />
<meta name="keywords" content="caídas, golpes, graciosos " />
<!-- /all in one seo pack -->
<!-- BEGIN - LMB^Box Comment Quicktags Version 2.4 //-->
<script type="text/javascript" language="javascript" src="http://www.humorhumor.com/wp-content/plugins/lmbbox-comment-quicktags.php"></script>
<!-- END - LMB^Box Comment Quicktags Version 2.4 //-->
</head>
Y en mi wordpress, el header.php se ve de esta manera:
Código PHP:
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
Alguien con conocimiento en estos, podria ayudarme a suprimir cosas que no hagan falta, y que por supuesto, no afecten a google. Como por ejemplo, eso de que salga un link hacia el post anterior y posterior. O que se repitan las mismas cosas hasta tres veces
En fin, perdonen por tanta molestia, y espero haberme explicado mas o menos bien