Skip to content

Instantly share code, notes, and snippets.

@nelsonJM
Created January 11, 2013 21:52
Show Gist options
  • Select an option

  • Save nelsonJM/4514250 to your computer and use it in GitHub Desktop.

Select an option

Save nelsonJM/4514250 to your computer and use it in GitHub Desktop.
Breadcrumb function for wp ecommerce and navxt to play together
function wordpress_breadcrumbs() {
global $post;
if(get_post_type($post) == 'wpsc-product'){
return true;
} else {
?>
<div class="breadcrumbs">
<?php
if(function_exists('bcn_display') && !is_front_page())
{
bcn_display();
}
?>
</div>
<?php
}
}
add_action('thesis_hook_post_box_top', 'wordpress_breadcrumbs');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment