Quantcast
Channel: WordPress.org Forums » [Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Support
Viewing all articles
Browse latest Browse all 42467

jrf on "[Plugin: WordPress SEO by Yoast] Remove current post title from breadcrumbs"

$
0
0

Sorry, small code fix - this should work:

function adjust_my_breadcrumbs( $linksarray ) {
	$last = count( $linksarray );
	if( ( is_array( $linksarray ) && $last > 0 ) && isset( $linksarray[$last-1]['id'] ) ) {
		array_pop( $linksarray );
	}
	return $linksarray;
}
add_filter( 'wpseo_breadcrumb_links', 'adjust_my_breadcrumbs' );

Viewing all articles
Browse latest Browse all 42467

Trending Articles