Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/07/2012, 20:45
Avatar de Lopezito
Lopezito
 
Fecha de Ingreso: junio-2010
Mensajes: 367
Antigüedad: 13 años, 10 meses
Puntos: 17
Necesito acortar el título de los botónes de siguiente post y anterior post

Hola a todos :)
Ando tratando de acortar los títulos(texto de los links) pero no lo logró..

Mi código:

Código:
<div style="width:auto;margin:0 auto;">
<?php
$prev_post = get_previous_post();

if($prev_post) {
   $prev_title = strip_tags(str_replace('"', '', $prev_post->post_title));
   echo "" . '&laquo; <a rel="prev" href="' . get_permalink($prev_post->ID) . '" title="' . $prev_title. '" class="post-prev"><strong> '  . $prev_title . '</strong></a>' . "";
                }

$next_post = get_next_post();
if($next_post) {
   $next_title = strip_tags(str_replace('"', '', $next_post->post_title));
   echo "" . '<a rel="next" href="' . get_permalink($next_post->ID) . '" title="' . $next_title. '" class="post-next"><strong>'.  $next_title . '</strong></a> &raquo;' . "";
                }
?></div>
Y los botones se hacen muy largos con títulos largos.
Espero que me ayuden.
Saludos y gracias de antemano