Add Word Limit to Posts

You can limit is through a filter on the_content

For example (in functions.php):

add_filter("the_content", "Content_Filter_Custom");

  function Content_Filter_Custom($content)
  {
    // return a subset of it
    return substr($content, 0, 300); 
  }