Site logo

Archived topic

Style breadcrumb like menu

1 reply · Started by scott doel on December 8, 2016

Viewing posts 1–2 of 2

Hi Tom,

I copied the code from here and it works great.

Is it possible to join the new div onto the menu? I'm also using a sticky menu so would like the breadcrumbs to stay also

If you needed to see the site its https://www.scottrdoel.co.uk

Hmm, not easily.

You could try adding them into the generate_inside_navigation hook.

add_action( 'generate_inside_navigation','tu_breadcrumb_nav' );
function tu_breadcrumb_nav() { ?>
    <div class="nav-breadcrumbs hide-on-mobile hide-on-tablet">
        Your breadcrumb code here
    </div>
<?php }

Then you would need to style it:

.nav-breadcrumbs {
    float: right;
}

Hope that's enough to get you started :)

This archived topic is closed to new replies.