I'm having a strange problem generating a breadcrumb using blog_info('url'). The code I'm using is:
<h2><a href="<?php echo get_bloginfo('url'); ?>">Home</a> » <a href="<?php get_bloginfo('url'); ?>/the-archives">Archive</a> » <?php the_title(); ?></h2>
You can see an example of what happens here.
The home page link is generated with no problems, but the link to the archive page ../the-archives misses out the blog directory for some reason, so it refers to my home page/the-archives rather than my home page/blog/the-archives.
Any ideas why this would be the case?
TIA,
Leon