WordPress
Esercizi personalizzati con excerpt_length e excerpt_more
Ricerca…
Limita la lunghezza dell'estratto a 50 parole
Inserisci il seguente codice in functions.php :
function themify_custom_excerpt_length( $length ) {
return 50;
}
add_filter( 'excerpt_length', 'themify_custom_excerpt_length', 999 );
Usa 999 come priorità per garantire che la funzione venga eseguita dopo il filtro WordPress predefinito, altrimenti sovrascriverà ciò che è impostato qui.
Aggiunta di un collegamento Leggi altro alla fine dell'estratto
Per fare questo, inserisci il seguente codice in functions.php :
function custom_excerpt_more($more) {
return '<a href="'. get_permalink($post->ID) . '">Read More</a>';
}
add_filter('excerpt_more', 'custom_excerpt_more');
I risultati dovrebbero assomigliare a questo:
Aggiunta di alcuni punti alla fine dell'estratto
Nelle nostre funzioni.php
function new_excerpt_more( $more ) {
return '.....';
}
add_filter('excerpt_more', 'new_excerpt_more');
Dovremmo ottenere questo:
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow