Skip to content

Instantly share code, notes, and snippets.

@stompweb
stompweb / yoast_breadcrumbs_learndash.php
Created March 4, 2017 10:03
Yoast breadcrumbs for LearnDash
<?php
function stomp_filter_learndash_yoast_breadcrumbs( $links ) {
$course_label = 'Courses';
$labels = get_option( 'learndash_custom_label_settings' );
if ( ! empty( $labels['courses'] ) ) {
$course_label = sanitize_text_field( $labels['courses'] );
}
if ( is_singular( 'sfwd-lessons' ) ) {