• Resolved diddybro

    (@diddybro)


    Hi – I was wondering if there is a way to adjust the length of excerpt displayed for recent posts on front page? I want to set it to 0 so that only the title is shown. I searched through the forum but couldn’t find the information. Thank you always for your help.

Viewing 1 replies (of 1 total)
  • Theme Author acosmin

    (@acosmin)

    Add this in functions.php at the bottom:

    if ( ! function_exists( 'ac_new_custom_excerpt_length' ) ) {
    	function ac_new_custom_excerpt_length( $length ) {
    		$length = 0;
    		return $length;
    	}
    }
    add_filter( 'excerpt_length', 'ac_new_custom_excerpt_length', 999 );

Viewing 1 replies (of 1 total)

The topic ‘Front page recent posts excerpt length adjustment?’ is closed to new replies.