anurag-singh
12/22/2015 - 10:35 AM

Add Custom post type link in Yoast Breadcrumbs for single page

// Add post type link in Yoast Breadcrumbs for single page
	add_filter( 'wpseo_breadcrumb_links', 'my_wpseo_breadcrumb_links' );
	function my_wpseo_breadcrumb_links( $links ) {

		if ( is_single() ) {
			$cpt_object = get_post_type_object( get_post_type() );
			if ( ! $cpt_object->_builtin ) {
				$landing_page = get_page_by_path( $cpt_object->rewrite['slug'] );
				array_splice( $links, -1, 0, array(
					array(
						'id'	=> $landing_page->ID
					)
				));
			}
		}

		return $links;
	}