Add breadcrumbs into the WordPress thesis theme
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');
What's your reaction?
Excited
0
Happy
0
In Love
0
Not Sure
0
Silly
0