// Attiva il campo "Riassunto" per articoli e pagine add_action('init', function () { add_post_type_support('post', 'excerpt'); add_post_type_support('page', 'excerpt'); }, 20); // Rimuove i tre puntini automatici di WordPress add_filter('excerpt_more', function ($more) { return ''; }); // Imposta una lunghezza uniforme per gli excerpt add_filter('excerpt_length', function ($length) { return 25; }, 999);

Intervento SRG08

It seems we can’t find what you’re looking for.