- Create your custom post type. (That's a whole different ball of wax, but I'll attach an example of a file (which we require_once in functions.php) at the end in case you need an example...)
- Create your landing page.
- Add the following code to your post type creation page (or anywhere in functions.php or a php document included/required therein, but let's be organized, shall we?):
add_filter( 'wpseo_breadcrumb_links', 'jb_wpseo_breadcrumb_links' );
function jb_wpseo_breadcrumb_links( $links ) {
// below, add as many post_types as you want custom breadcrumbs for
if ( is_single() && get_post_type() == 'POST_TYPE_SLUG') {