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 "" . '« <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> »' . "";
}
?></div>
Y los botones se hacen muy largos con títulos largos.
Espero que me ayuden.
Saludos y gracias de antemano