OK. I found the solution. I put the following code in theme’s functions.php file.
function my_wpseo_breadcrumb_links( $links ) {
global $post;
if ( is_singular && get_post_type() == 'wp_tut' ) {
$breadcrumb[] = array(
'url' => 'https://mysite.com/movies/',
'text' => 'Movies',
);
array_splice( $links, 1, -2, $breadcrumb );
}
return $links;
}
add_filter( 'wpseo_breadcrumb_links', 'my_wpseo_breadcrumb_links' );