Welcome, guest!

Feel free to read the blog, browse for themes, or join the club.

Breadcrumbs with static home page

  1. im using a mod of leviathan along with a static front page. in the front page there is no breadcrumb (page title=home), which I can live with, but on the blog page hybrid_breadcrumb shows HOME.

    where would i modify it to read BLOG? the page is called blog after all.

    thanks

  2. You must be a logged-in exclusive member to view this reply.

  3. one small syntax error in your code:

    $args['show_home'] = 'Blog';

    but i still had the word Blog replacing Home in other pages (Browse: Blog / OtherPage), so i used

    function my_breadcrumb_trail_args( $args ) {
    	if ( is_home() ) :
    		$args['show_home'] = 'Blog';
    	else :
    		$args['show_home'] = 'Home';
    	endif;
    	return $args;
    }

    optionally, i also changed some other default args to

    $args['separator'] = '>';
    $args['before'] = '';
    $args['front_page'] = 'false';
  4. You must be a logged-in exclusive member to view this reply.

  5. @eddieb

    Thanks for sharing your solution! There's a Trac ticket to address this issue but it keeps getting deferred for some reason.

  6. you're welcome @EvilEsq !

Reply

You must log in to post.

Limited Access

If you have an account, please take a moment to log in.

Non-exclusive members have limited access to the support forums.

To enjoy the full range of support, sign up for an exclusive membership in the theme club.

Support Forums

  • Bliss Theme (253 posts)
  • Hybrid Theme (21,735 posts)
  • Options Theme (10,356 posts)
  • Structure Theme (2,747 posts)
  • Outline Theme (36 posts)
  • Visionary Theme (767 posts)
  • bbPress Themes (305 posts)
  • WordPress Plugins (2,045 posts)
  • General Discussion (5,276 posts)