Change "blog"/home link
-
I have breadcrumbs on the blog page. Currently the main/root link (‘home’) is pointing to the root url, the main/homepage. Unfortunately my blog is not the main page of my site. How do I change the ‘home’ (or first link) to point to the blog? See my current code below, any help is appreciated thanks.
<?php if (function_exists('show_full_breadcrumb')) show_full_breadcrumb( array( 'labels' => array( 'local' => false, // set FALSE to hide 'home' => __('Our Blog'), 'page' => __('Page'), 'tag' => __('Tag'), 'search' => __('Searching for'), 'author' => __('Published by'), '404' => __('Error 404 › Page not found') ), 'separator' => array( 'element' => 'span', 'class' => 'separator', 'content' => '›' ), // set FALSE to hide 'local' => array( 'element' => 'span', 'class' => 'local' ), 'home' => array( 'showLink' => true, 'showBreadcrumb' => true ), 'actual' => array( 'element' => 'span', 'class' => 'actual' ), // set FALSE to hide 'quote' => array( 'tag' => true, 'search' => true ), 'page_ancestors' => array( 'showLink' => true ) ) ); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Change "blog"/home link’ is closed to new replies.