<?php
//Change the default excerpt length in WordPress (default is 55 words)
function smartwp_change_excerpt_length( $length ) {
  return 24;
}
add_filter( 'excerpt_length', 'smartwp_change_excerpt_length', 9999);