Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/05/2012, 11:46
BrotherCS
 
Fecha de Ingreso: mayo-2011
Mensajes: 17
Antigüedad: 13 años
Puntos: 2
Pregunta Redundancia en los links de Wordpress

Hola a todos! Estoy aprendiendo a hacer temas en Wordpress, pero cuando quiero poner un link de este tipo:
Código PHP:
<a href=”<?php bloginfo(&#8217;url’); ?>”><?php bloginfo(&#8217;name’); ?></a>
Me lleva a:
Código:
http://localhost/prueba/"Prueba"
Prueba es el título que le puse al blog.

Y cuando pongo esto:

Código PHP:
<?php if(have_posts()):?><?php while(have_posts()):the_post();?>
<h2><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2>
Me lleva a:

Código:
http://localhost/prueba/"http://localhost/prueba/2012/05/hola-mundo/"
Probé cambiando los permalinks pero sigue igual, así que supongo que debe ser e. .htaccess pero ni idea que tengo que hacer para solucionarlo.

Gracias de antemano por su ayuda.