Hi,
How do I costumize the “archive for month” archive page. The only option I have found are the restricted options under “Theme Options” >”Blog”. I need to be able to choose “extract and read more” – but this option does not exist here and the whole post i showing (too much for what I need)..
Se example:
http://oslocancer.wpengine.com/?m=201404&cpkultimatearchive=2 (hosted on WPengine)
Please advice:)
Elise
Hi Elise!
Thank you for using the theme!
Please add this on functions.php to decrease the excerpt length on archive pages:
add_filter('avf_postgrid_excerpt_length','avf_increase_postgrid_excerpt_length', 10, 1);
function avf_increase_postgrid_excerpt_length($prepare_excerpt) {
if(is_archive()) {
$prepare_excerpt = 60;
}
return $prepare_excerpt;
}
Default value is 60, you can adjust the value if you want.
Best regards,
Ismael
Great thanks – how do I remove the text from the article – I just want the exerpt?
Elise:)
Hey Elise!
Have you set the excerpt here?
Cheers!
Josue