Breadcrumb code to use
-
I was wondering what code I should use in order to display Yoast breadcrumbs above the page content. Here’s the code I’m currently using that’s not working:
function wp_bc_move( $content ) { $custom_content = 'the_breadcrumb();'; $custom_content .= $content; return $custom_content; } add_filter( 'the_content', 'wp_bc_move' );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Breadcrumb code to use’ is closed to new replies.