Tagged: excerpt length, magazine
Hallo Zäme,
where can I specify the excerpt length of the Magazine article?
Currently only 60 or so *characters* (not words!) are displayed, which is somewhat minimalistic ;-) … the text which is displayed almost looks like a typo error…..
Thankyouschön
Paul
Hey UncleGroOve!
Please add following code to Functions.php file in Appearance > Editor and change 100 to needed value
add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
function avf_magazine_excerpt_new_lenght($excerpt) {
$excerpt = 100;
return $excerpt;
}
Regards,
Yigit
Works beautifully – case closed, thanks!
Paul