I have this line of code
<?php if ( current_theme_supports( 'breadcrumb-trail' ) ) breadcrumb_trail( array( 'container' => 'nav', 'separator' => '>', 'before' => __( 'You are here:', 'chun' ) ) ); ?>
How do I insert the following code to replace the 'You are here' part?
<a href="http://myblog.com"><img src="http://myblog/img/mini-gek.gif" alt="Home" title="Home"></a>
<span class="issue-num">The Itinerant | <?php echo do_shortcode("[issuem_issue_title]"); ?>
</span>
I'm unsure how to break it up correctly.