Truncate custom post type content

Untested. But try: <?php echo apply_filters( 'the_content', limit_text( get_the_content(), 15 ) ); ?>

15 is for char limit or word limit? If words, using strlen is incorrect.

Try using WP wp_trim_words() instead.