Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/04/2011, 07:55
Avatar de rogertm
rogertm
Mod->Cuba
 
Fecha de Ingreso: julio-2005
Ubicación: /home/Cuba/Habana/rogertm/
Mensajes: 2.922
Antigüedad: 18 años, 9 meses
Puntos: 638
Información Respuesta: recomendacion theme: opcion leer mas

Twentyten, plantilla por defecto en Wordpress, trae en su archivo functions.php una función que te permite limitar la cantidad de palabras a mostrar por the_excerpt():

Código PHP:
Ver original
  1. <?php
  2. /**
  3.  * Sets the post excerpt length to 40 characters.
  4.  *
  5.  * To override this length in a child theme, remove the filter and add your own
  6.  * function tied to the excerpt_length filter hook.
  7.  *
  8.  * @since Twenty Ten 1.0
  9.  * @return int
  10.  */
  11. function twentyten_excerpt_length( $length ) {
  12.     return 40;
  13. }
  14. add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
  15. ?>

Saludos
__________________
Friki y Blogger por Cuenta Propia:213
Twenty'em: Theming is Prose