mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
10 lines
313 B
Text
10 lines
313 B
Text
add_filter( 'aioseo_breadcrumbs_trail', 'aioseo_breadcrumbs_trail' );
|
|
function aioseo_breadcrumbs_trail( $crumbs ) {
|
|
foreach ( $crumbs as $key => $crumb ) {
|
|
if ( is_a( $crumb['reference'], 'WP_Term' ) && 'uncategorized' === $crumb['reference']->slug ) {
|
|
unset( $crumbs[ $key ] );
|
|
}
|
|
}
|
|
|
|
return $crumbs;
|
|
}
|