Skip to content

Instantly share code, notes, and snippets.

@ANIRUDDHBHAT
ANIRUDDHBHAT / functions.php
Created May 12, 2022 19:48 — forked from danielmcclure/functions.php
Enable excerpts for LearnDash Lessons
<?php
/**
* Enable excerpts for LearnDash Lessons
*/
function add_excerpts_to_ld_lessons() {
add_post_type_support( 'sfwd-lessons', 'excerpt' );
}
add_action( 'init', 'add_excerpts_to_ld_lessons' );