|
I just noticed that if a story is in the queued section the category link in the breadcrumb links to the published category while the category link in the story details links to the queued category.
ie:
breadcrumb: home>news>story title (news links to published news)
news details: Category: news (news links to queued news)
I found the code that makes the proper category link:
{if $story_status eq "published"}
in <a href="{$category_published_url}">
{else}
in <a href="{$category_queued_url}">
{/if}
{$link_category}</a>
However I don't know how to add this to the breadcrumb?
Any ideas?
|