How do we change the length of the text that displays on the bottom home page in the Feature Blog Item? URL: inform.danielcheney.com Thanks. Daniel
Hello. For this go to the Appearance > Editor / front-page.php and change value shown in image given below.
Thank you. How do we do this same thing on the Blog page? http://www.informdecisions.com/company/blog/
Hello, Go to functions.php present in your theme directory and add the code given below Code: function custom_excerpt_length( $length ) { return 200; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); Sending image for reference This will solve your issue.