xarlington 0 Denunciar post Postado Outubro 16, 2010 Ola pessoal, estou precisando de um plugin equivalente o the excerpt_rereloaded, para quem nao conhece ele limita o conteudo dos posts, porem nao consigo usar ele para o titulo e acho que ele tb nao serve para essa funcao, gostaria de saber de vcs se conhece algum plugin com a mesma funcao de limitar porem para o titulo... Valeu Compartilhar este post Link para o post Compartilhar em outros sites
Anderson Narciso 3 Denunciar post Postado Outubro 17, 2010 Não utilizo plugin, mas utilizo uma força funcional No arquivo post-tample.php que você encontra dentro da pasta wp-includes tera que ser feita a seguinte alteração: Linhas de função relacionada ao título (linha 45 à 57) function the_title($before = '', $after = '', $echo = true) { $title = get_the_title(); if ( strlen($title) == 0 ) return; $title = $before . $title . $after; if ( $echo ) echo $title; else return $title; } Troque elas por: function the_title( $before = '', $after = '', $echo = true, $length = false) { $title = get_the_title(); if ( $length && is_numeric($length) ) { $title = substr( $title, 0, $length ); } if ( strlen($title) > 0 ) { $title = apply_filters('the_title', $before . $title . $after, $before, $after); if ( $echo ) echo $title; else return $title; } } A função de título fica assim: <?php the_title('', '', true, '22') ?> 22 = número de caracteres Compartilhar este post Link para o post Compartilhar em outros sites
xarlington 0 Denunciar post Postado Outubro 17, 2010 hummm... irei testar aqui, valeu pela dica. :) Compartilhar este post Link para o post Compartilhar em outros sites