Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save developer-anuragsingh/7b49fc63f31512f032ae to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/7b49fc63f31512f032ae to your computer and use it in GitHub Desktop.
// 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment