I was able to solve it. Set (tweeple_do_entities, true)
and then setup a loop within the template loop.
I chose this route for my current project:
if( isset($tweet['entities']['media']) ) {
foreach( $tweet['entities']['media'] as $media ) {
$output .= sprintf( '<div class="tweet-image"><img src="%s:thumb" /></div>', $media['media_url_https']);}}
Also, I’d like to note that if anyone is attempting to incorporate more into this plugin setting tweeple_do_cache
to false helps tremendously.
Again, thanks for the plugin,
Jonathan