Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/03/2010, 18:11
Avatar de metacortex
metacortex
Viejo demente
 
Fecha de Ingreso: junio-2004
Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 19 años, 10 meses
Puntos: 832
Respuesta: Como instalar Nolink.in en wordpress??

1) Puedes instalar un plugin como éste:

http://wordpress.org/extend/plugins/url-shortener/ [más plugins]

2) Puedes hacerte tu propia función:

Código PHP:
Ver original
  1. function getTinyUrl($url) {
  2.     $tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url=".$url);
  3.     return $tinyurl;
  4. }

Más info: http://www.smashingmagazine.com/2009...rdpress-hacks/