Come modificare la lunghezza dell’excerpt

Difficulty Difficulty Difficulty Posted Posted by Fulippo in Tutorial     Comments 1 comment
feb
27

Facile e veloce: per modificare la lunghezza di default dell’excerpt è sufficiente inserire queste righe di codice nel file functions.php dentro il vostro tema:

1
2
3
4
5
    function modifica_lunghezza_excerpt(){
        return 20; // Modificate con valore che più ritenete opportuno
    }
 
    add_filter('excerpt_length','modifica_lunghezza_excerpt');

Riferimenti:
Codex: Add Filter

1 Comment to “Come modificare la lunghezza dell’excerpt”

  • It works! Thank you man

Post comment