Actually, I figured this out… on index-testemonials.php I did the following:
<div class="span6 recent_blog">
<h2><?php if($current_options['recent_blog_title']!='') { echo $current_options['recent_blog_title'];} ?><span><?php if($current_options['recent_blog_description']!='') { echo $current_options['recent_blog_description'];} ?></span></h2>
<div class="row">
<?php $args = array( 'numberposts' => '4' );
$recent_posts = wp_get_recent_posts( $args );
if($recent_posts){
foreach( $recent_posts as $recent ){
setup_postdata($recent);
//echo '
<pre>';
//var_dump($recent);
//echo '</pre>
';
?>
<div class="span3">
<div id="recent_blog_cols" class="media">
<?php if(get_post_thumbnail_id($recent["ID"])!='')
{
$defalt_arg=array('class'=>'media-object img-circle pull-left recent_blog_thumb');
echo get_the_post_thumbnail($recent["ID"],'recent-blog-thumb', $defalt_arg);
}else{?>
<img src="<?php echo $template_uri .'/testimonial.jpg'; ?>" class="media-object img-circle pull-left recent_blog_thumb">
<?php
}
?>
<div class="media-body">
<p><?php echo '<a>' . $recent["post_title"].'</a>'; ?></p><?php echo string_limit_words($recent["post_content"],10);?>...
<span><?php// echo date("M d. Y", strtotime($recent['post_modified'])); ?></span>
</div>
</div>
</div>
<?php } } else { ?>
<div class="span3">
<div class="media-body">
<p><?php _e("NO POST TO DISPLAY...",'busi_prof');?></p>
</div>
</div>
<?php } ?>
</div>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
So it now displays text from recent posts and limits the word count in the recent blogs section automatically along with the titles and images.
Your suggested method would require manual intervention which is not very efficient and would ultimately mean stale content since our less technical users would have to remember to update that options section AND I’d have to trust them with access to it.