Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/05/2011, 21:07
Avatar de j_aroche
j_aroche
Server Ninja
 
Fecha de Ingreso: agosto-2006
Ubicación: iPhone: 14.624481,-90.487457
Mensajes: 2.066
Antigüedad: 18 años, 3 meses
Puntos: 223
Respuesta: Eliminar #comment-NUMERO de url al enviar comentario

Lo correcto es que lo hagas con un plugin o en functions.php de tu theme:

Código PHP:
Ver original
  1. function commentlink_filter($link) {
  2.     $parts = @explode ('#' , $link );
  3.     if ( !empty($parts) )
  4.         $link = $parts[0];
  5.     return $link;
  6. }
  7.  
  8. add_filter( 'get_comment_link', 'commentlink_filter', 10 , 1 );
__________________
Blog: JavierAroche.com - Twitter: @j_aroche

Última edición por j_aroche; 27/05/2011 a las 22:42