[ad_1]
Hi @powerj9, here you go:
add_filter( 'aioseo_breadcrumbs_trail', function ( $crumbs ) {
if ( is_single( 123456 ) ) {
$blogCrumb[] = [
'label' => 'Blog',
'link' => site_url( '/blog/' ),
];
array_splice( $crumbs, 1, - 2, $blogCrumb );
}
return $crumbs;
} );Let us know how that goes and if you need further assistance!
