How To Limit Words and Characters in content WordPress
1. Words Length:
Remove the <?php the_content();?> insert the below code
2. Character Length :
Remove the <?php the_content();?> insert the below code
<?php echo substr(strip_tags($post->post_content), 0, 46);?> //(Change the 46 to your desire string length)