Does it take the breadcrumb image automatically from the post?
There must be something wrong with my code:
index.php
<?php $temp_query = $wp_query; ?>
<?php get_header(); ?>
<div id="content">
<?php if (function_exists
('breadcrumb_nav_xt_display')) {
if (!is_home()) {
echo '<div class="breadcrumb">';
bcn_display();
echo '</div>';
} } ?>
<?php if (have_posts()) :
?>
<?php while (have_posts()) : the_post();
?>
<div class="post" id="post-<?php
the_ID(); ?>">
<h1><a href="<?
php the_permalink() ?>" rel="bookmark" title="Permanent
Link to <?php the_title_attribute(); ?>"><?php the_title
(); ?></a></h1>
<div
class="entry">
<?php
the_content("<br />Read more..."); ?>
</div>
<div
style="clear:both;"></div>
<div class="postmeta">
<span class="post-author"><?php the_author(); ?></span>
<span class="post-calendar"><?php
the_time('j F Y'); ?></span>
<span class="post-category"><?php the_category(', '); ?
></span>
<?php if
(function_exists('the_tags')) : ?>
<?php the_tags('<span class="post-tag">',
', ', '</span>'); ?>
<?php endif; ?>
<span
class="post-comment"><?php comments_popup_link('No
Comments', '1 Comment', '% Comments'); ?></span>
<?php if ($user_ID) : ?>
<span class="post-
edit"><?php edit_post_link(__
('Edit',TEMPLATE_DOMAIN),'',''); ?></span>
<?php endif; ?>
</div>
</div>
<?php endwhile;
?>
<div class="navigation">
<?php if
(function_exists('wp_pagenavi')) : wp_pagenavi(); else :
?>
<div class="alignleft"><?php next_posts_link
('« Older Entries') ?></div>
<div
class="alignright"><?php previous_posts_link('Newer
Entries »') ?></div>
<hr class="clear"/>
<?php endif; ?>
</div>
<?php else : ?>
<div
class="post">
<h2 class="headtitle
center">Not Found</h2>
<p
class="center">Sorry, but you are looking for something
that isn't here.</p>
<center><?php
include (TEMPLATEPATH . "/searchform.php"); ?></center>
</div>
<?php endif; ?>
</div><!--/content -->
<?php
get_sidebar(); ?>
<?php get_footer(); ?>