WordPress Twenty Thirteen: Using Excerpts on Archive Pages
WordPress Twenty Thirteen theme shows full post content on archive pages by default. Using excerpts instead keeps archive pages clean and improves page load speed by showing just a summary of each post. Enable Excerpts on Archive Pages Add this to your theme’s functions.php or a custom plugin: function twentythirteen_excerpts_on_archives($content) { if (is_archive() || is_home())…
