chihung
2/24/2020 - 5:19 AM

WP breadcrumbs nav_tx exclude specific title

add_filter( 'bcn_breadcrumb_title', 'my_breadcrumb_title_swapper', 3, 10 );
function my_breadcrumb_title_swapper( $title, $type, $id ) {
    if ( in_array( 'post', $type ) ) {
        if ( $id === 6 ) {
            $title = __( 'HOME' );
        }
    }

    return $title;
}