Customize WordPress Excerpts

Website Tutorial

How to Customize WordPress Excerpts

Switch to the directory where the theme is located, open functions.php, and add the following code: function jackyexcerpt($max_char = 200, $more_text = ‘…’, $limit_type = ‘content’) { if ($limit_type == ‘title’) { $text = get_the_title(); } else { $text =...