I have the breadcrumbs function in my header.php. I don't want to the breadcrumbs to appear on my homepage but all other pages I want it to appear. Please help in how I can achieve this.
The function to display the breadcrumbs in the header is:
<div id="breadcrumbs" class="container">
<div class="row">
<?php breadcrumb_trail( array(
'separator' => '»',
'before' => '',
'show_home' => '<img src="' . get_template_directory_uri() . '/images/breadcrumb-home.png" />',
) ); ?>
</div>
</div>