Skip to content Skip to sidebar Skip to footer

Add breadcrumbs into the WordPress thesis theme

Reading Time: < 1 minute

If you want to add and display breadcrumbs navigation into the wordpress thesis theme, you can do it simply using wordpress hooks.
Look at the following function it will generate the breadcrumbs navigation.The call to it using thesis_hook_after_header wordpress thesis hook.

function thesis_breadcrumbs() {
	echo '';
} // end the function

How to display breadcrumb

add_action('thesis_hook_after_header','thesis_breadcrumbs');
Full code is here
function thesis_breadcrumbs() {
	echo '';
} // end the function
// call to the function
add_action('thesis_hook_after_header','thesis_breadcrumbs');